Forum Discussion
Matrix - Not Showing All Columns
- 7 years ago
HI,@creynolds
You may try to use these two formula like below:
Not Started = IF( 'Production Data'[Date]>=TODAY(),1,0) Started = IF('Production Data'[Date]<TODAY(),1,0)Result:
Basic data
Best Regards,
Lin
I was able to correct the issue by creating two independent "New Measures". However my new problem -- both new measurements return the exact same result:
Started = 'Production Data'[JOB_ORIG_START] < TODAY()
Not Started = 'Production Data'[JOB_ORIG_START] > TODAY()
The result for both is returning a count of the # of occurrences. There should be no reason both columns return the exact same #.
Not Started Started
MidWest 36 36
Southeast 2 2
West 25 25
Any ideas?
HI,@creynolds
You may try to use these two formula like below:
Not Started = IF( 'Production Data'[Date]>=TODAY(),1,0)
Started = IF('Production Data'[Date]<TODAY(),1,0)Result:
Basic data
Best Regards,
Lin