Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Need help on below

I have a table like below    Employee name Group Test Name Ramu Production   Arjun Test Arjun Need a mesuare if group column will be test then employee name should be Arjun show ...
  • FreemanZ's avatar
    2 years ago

    hi Anonymous ,

     

    try to plot the mentioned columns with a measure like:

     

    Test Name = 
    IF(
        MAX(data[Group]) = "Test", 
        "Arjun", ""
    )

     

    or 

    Test Name = 
    IF(
        MAX(data[Group]) = "Test", 
        MAX(data[Employee name]), ""
    )

     

    it worked like: