Forum Discussion
john121
3 years agoFrequent Visitor
Refer multiple columns in a single calculated column
I want to create a single calculated column having multiple columns and their respective text string and display them in a card like: Country name: dataset[country name] State name: dataset[State ...
- 3 years ago
Try this one:
calcol = "Country: " & 'Table'[Country] & UNICHAR(10) & "State: " & 'Table'[State] & UNICHAR(10) & "City: " & 'Table'[City]
Alex_Serebr
3 years agoFrequent Visitor
Try this one:
calcol = "Country: " & 'Table'[Country] & UNICHAR(10) & "State: " & 'Table'[State] & UNICHAR(10) & "City: " & 'Table'[City]