Hie Guys,
I have a variable called "Complexity" that I need to pass from a master report to a detail report. The formula for the variable is -
Complexity = If (Project Duration < 4 ) Then "Small"
ElseIf (Project Duration <6) Then "Medium"
Else "Large"
Project Duration = daysbetween(End Date - Start Date)/30.416
Now, "End Date" and "Start Date" are objects from the universe.
The master report has the following columns - Complexity, Department Name, Project Count.
Project Count = Count(Project ID)
The Detail report has the following columns - Complexity, Department Name, Project ID, Project Name.
How do I go about passing the parameters in this situation ? Your feedback is appreciated. Thanks.