Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi experts
For the label expression of a measure I have this line:
'Actuals YTD ' & [Date.Month]={$(=Max([Date.Month])}
I need to show the Month 'MMM' in the label if user is selecting e.g. 4 month: Jan, Feb, Mar, Apr. It should show 'Apr'.
any ideas?
Thanks, tom
No, that is not the correct direction. 😞
You are trying something like set analysis, which you don't need here, nor it is the right way. In my previous post, I asked to use date field, if you don't have one, try exatly (copy paste) like below:
='Actual YTD ' & Month(Date#(Max([Date.Month]),'M'))
Try using date field instead, like:
'Actuals YTD ' & Date(Max(yourDateField), 'MMM')
not working, it is giving me Jan....independently of Month selection.
this expression might be the correct direction, but still gives me an error. Any ideas how to fix it? Thank you!
No, that is not the correct direction. 😞
You are trying something like set analysis, which you don't need here, nor it is the right way. In my previous post, I asked to use date field, if you don't have one, try exatly (copy paste) like below:
='Actual YTD ' & Month(Date#(Max([Date.Month]),'M'))