Forum Discussion
Shaji
6 years agoHelper I
Need Help
Hi All, I have table with muliple columns inlcusing the below two: Event Type AAA Cust123 BBB Cust123 AAA CP BBB CP AAA B2B BBB B2B now based on the above two ...
- Anonymous6 years ago
Hi Shaji ,
You can use SWITCH also
SWITCH(
TRUE(),
Table'[Event] = "AAA" && Table[Type] = "Cust123", "Customer",
Table'[Event] = "BBB" && Table[Type] = "Cust123", " Other Customer"
)
Regards
HN
Anonymous
6 years agoNot applicable
Hi Shaji ,
Not sure how will you replace Cust123 with Customer, etc... How many combinations like this do you have.
You can try this.
Column = IF('Table'[Event] = "BBB", CONCATENATE("Other " , 'Table'[Type]),'Table'[Type])
Regards,
Harsh Nathani
Anonymous
6 years agoNot applicable
Hi Shaji ,
You can use SWITCH also
SWITCH(
TRUE(),
Table'[Event] = "AAA" && Table[Type] = "Cust123", "Customer",
Table'[Event] = "BBB" && Table[Type] = "Cust123", " Other Customer"
)
Regards
HN