Forum Discussion
Anonymous
5 years agoNot applicable
Measure to Show Result in New Calculated Column
Hi Experts
I have two columns A and B i want to find where we have the word result in eitehr column and populate that into a new column as Shown in the sample data below
| Column A | Column B | End Result |
| Result | Result | |
| Result | Result | |
| Result | Result | |
| Result | Result | Result |
| Result | Result |
Anonymous
is this what you want?
if ( columnA="Result" || columnB ="Result", "Result")
2 Replies
- ryan_mayu
Super User
Anonymous
is this what you want?
if ( columnA="Result" || columnB ="Result", "Result")
- AnonymousNot applicable
Thanks ryan let me test