Forum Discussion
Anonymous
3 years agoNot applicable
DAX Measure error
Hi Experts Cannot see how to fix the following DAX.... Measure 3 =
VAR _User =
CONCATENATE(
CONCATENATE(
"(",
CONCATENATE(
"India",
")")
...
- 3 years ago
just put the ; after the closing bracket around India:
Measure 3 =VAR _User =CONCATENATE(CONCATENATE("(",CONCATENATE("India",");")),CONCATENATE("[",CONCATENATE(004,"]")))RETURN_User
DOLEARY85
3 years agoResident Rockstar
Hi,
there doesn't seem to be anything wrong, i copied it into PBI and it works:
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
- Anonymous3 years agoNot applicable
Hi Doleray85 how do i amend the above to include a ; between (india) and [4] so end result is (india);[4]
- DOLEARY853 years agoResident Rockstar
just put the ; after the closing bracket around India:
Measure 3 =VAR _User =CONCATENATE(CONCATENATE("(",CONCATENATE("India",");")),CONCATENATE("[",CONCATENATE(004,"]")))RETURN_User