Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
9 years ago
Solved

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

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Smoupre,

     

    Do you mean this one? It just says "Card" when I hover the mouse over it:

     

     

    Thanks,

     

    CM

      • Anonymous's avatar
        Anonymous
        Not applicable

        Thanks smoupre, is there any way of included the parameter within a string? For example "This report is for [DATE]"?