Forum Discussion

om_eraydin's avatar
om_eraydin
New Member
9 years ago
Solved

Multiple Dynamic Data in Text Box

Hi,   I want to create a text report like;   Dear [CompanyName];   Your last order date is [LastOrderDate]. If you need new [NewItem]....   etc. etc. et.c   I want to fill the areas between...
  • v-huizhn-msft's avatar
    9 years ago

    Hi om_eraydin,

    In text box, we can not use measure. I suggest you add the measure in card visual. Please review the following steps.

    1. Create a Table visual to display your table data.

    2. Create a measure using the formula.

    Measure = "Dear"&VALUES(TT[Companies])&"Your last order date is"&VALUES(TT[Last Order Date])&"If you need new"&VALUES(TT[New Item])


    3. Create a card visual to disply the Measure, when you select the first row in the table, the card will display the corresponding result.

    select the first row in tableselect the second row in table

    Best Regards,
    Angelia