I used cross table to bring the above table information in my application. Like this
IssueCategory:
CrossTable(IssueCategory, Number, 2)
LOAD * FROM
[QC Log\Assignment Tracker.xls]
(biff, embedded labels, table is [Issue Category$]);
In my application, I have a input box where I have a variable called "EnterDate" and my formula is =today() in that variable. But my project ended on 31-Aug. I actually want to bring 31-Aug information on a pivot table.
So I am trying something like this in my pivot table expression =Sum (if(Date<=EnterDateANDIssueCategory='Information',Number))