I've run into an issue with the WEBI report I am making. Here is the code in question:
=If([Group Change Task Status Desc] = "Open")
Then([Count of GCT])
ElseIf([Group Change Task Status Desc] = "Complete" And [SH Open Date Actual Dt] >= [Current Date - 60] And [SH Open Date Actual Dt] <= [Current Date])
Then([Count of GCT])
This is very basic and straight forward code. Count the O's and count the C's when they fall between the two dates.
This is the error I'm getting:
Formula Evaluation - Error in dataset values : #MULTIVALUE
Check formula definition in this dataset context
I've determined the error is because of this part of the code:
And [SH Open Date Actual Dt] >= [Current Date - 60] And [SH Open Date Actual Dt] <= [Current Date]
I've tried it without this line and I get no errors. But the obvious problem is that I get too much data counted for the C's.
I hope I provided enough info. Like I said, it's pretty straight forward code. But this is my first time using WEBI and I need more experienced eyes on it.