Forum Discussion
onebrady
8 years agoRegular Visitor
Date Calculation and Filtering Issues
I am working with a TimeClock database. This database tracks Projects performed in an auto repair shop. The employees clock in and clock out of each job. The "Job" has a specific code. Multip...
- 8 years ago
Hi,
Try this measure
=IF(HASONEVALUE(Data[CostCode]),[your measure],CALCULATE([your measure],ALL(Data[CostCode])))
Hope this helps.
Ashish_Mathur
8 years agoSuper User
Hi,
Try this measure
=IF(HASONEVALUE(Data[CostCode]),[your measure],CALCULATE([your measure],ALL(Data[CostCode])))
Hope this helps.
- onebrady8 years agoRegular Visitor
This actually helped a great deal. I wasn't aware of how to use ALL()
Thank you so much Ashish