Forum Discussion
Anonymous
4 years agoNot applicable
Need a help with & formula
Hi Experts
I have added a column in my access db table to compute the below result.
I would like to get the result as "XYZ" if the XYZ column has "Yes" in it. Else if "ABC" if the ABC column has "Yes" in it or the result should be blank. My first priority result is XYZ not ABC.
Please can someone help me with the formula to achieve this.
Thanks
Mahad
Hi Anonymous ,
Try using this:
Result = IF([ABC]="Yes", "ABC", IF([XYZ]="Yes","XYZ",""))
Anonymous -> Please hit the thumbs up & mark it as a solution if this helps you. Thanks.
1 Reply
- truptis
Community Champion
Hi Anonymous ,
Try using this:
Result = IF([ABC]="Yes", "ABC", IF([XYZ]="Yes","XYZ",""))
Anonymous -> Please hit the thumbs up & mark it as a solution if this helps you. Thanks.