Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

DAX Measure error

Hi Experts    Cannot see how to fix the following DAX.... Measure 3 = VAR _User = CONCATENATE( CONCATENATE( "(", CONCATENATE( "India", ")") ...
  • DOLEARY85's avatar
    DOLEARY85
    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