Forum Discussion
Sean-OReilly
Helper IV
6 years agoNeed Help with a DAX Measure
Hi
I need to calculate a measure to return "Job Description" based on a filter of Sub-Job = 0
e.g the answer i want below is "TII Boardroom C18041"
- Anonymous6 years ago
HI Sean-OReilly ,
Create a Measure
Measure = CALCULATE(MAX('Table'[Job_Description]),'Table'[Sub_JOB_Number] = 0))Regards,
Harsh NathaniAppreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!
2 Replies
- AnonymousNot applicable
HI Sean-OReilly ,
Create a Measure
Measure = CALCULATE(MAX('Table'[Job_Description]),'Table'[Sub_JOB_Number] = 0))Regards,
Harsh NathaniAppreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!- Sean-OReilly
Helper IV
thanks Harsh