Forum Discussion
Multiple Dynamic Data in Text Box
- 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
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
Thanks Angelia. This is the exact solution I needed.