Forum Discussion
Anonymous
9 years agoNot applicable
Standalone calculated answer
Hi,
Please can you tell me how to create a visual that just shows a standalone answer to a dax formula? For example, just showing the month of the report (using dax formula MONTH(NOW()) ) or showing the % of business days elapsed in the current month (using a dax formula I haven't designed yet!)
Thanks,
CM
Should be able to do that no problem, just create a calculated column or measure like:
MyTitle = CONCATENATE("This report is for ",[column]) or MyTitle = CONCATENATE("This report is for ",NOW())
5 Replies
- Greg_DecklerCommunity Champion
Generally you would use the stock Card Visualization for that.
- AnonymousNot applicable
Hi Smoupre,
Do you mean this one? It just says "Card" when I hover the mouse over it:
Thanks,
CM
- Greg_DecklerCommunity Champion
Yep, that's the one.
- AnonymousNot applicable
Thanks smoupre, is there any way of included the parameter within a string? For example "This report is for [DATE]"?