Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Guys, could you please help me?
I have just started to learn Power BI and faced a problem ;(
I have a table with customers and measures: "Count of purchase", "Count of purchased goods", "Amount";
need to write a measure which will display such text: "This customer has bought [Count of purchase], [Count of purchased goods] goods, paid [Amount] USD".
How can I solve this?
Solved! Go to Solution.
Hi @Anonymous ,
You could use & symbol. Check the formula.
Measure = "This customer has bought "&[Count of purchase]&", "&[Count of purchased goods]&" goods, paid "&[Amount]&" USD"
Best Regards,
Jay
Hi @Anonymous ,
You could use & symbol. Check the formula.
Measure = "This customer has bought "&[Count of purchase]&", "&[Count of purchased goods]&" goods, paid "&[Amount]&" USD"
Best Regards,
Jay
@Anonymous
When you say you have measures in a table do you mean you wrote a measure like this.
Count of purcase goods = SUM ( Sales[Quantity] )
or that there is a column in your table called 'Count of purchased goods' like this.
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 32 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 84 | |
| 70 | |
| 38 | |
| 27 | |
| 24 |