Forum Discussion
Krish89
5 years agoHelper II
Lookup values based on multiple conditions
Hello, I have an excel file with two sheets called Data and MF. S.NONew : =IF(OR(D2="#";D2="NULL");C2;D2) CombinedValue: = B2&A2&E2 (concatenation of ID ,IDNew, S.NONew) Rep: = IFERROR...
v-deddai1-msft
5 years agoCommunity Support
Hi Krish89 ,
You can create the following calculated column in Data table:
Rep = var a =LOOKUPVALUE(MF[Rep],MF[ID],Data[ID]) return IF(ISBLANK(a),"UNASSIGNED" ,a)
Here is the screenshot of my sample data:
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Krish89
5 years agoHelper II
Hi v-deddai1-msft ,
Thanks for your help!!
But here in your calculated column the IF condition is missing(refer my post).
Regards,
Krishna.
- v-deddai1-msft5 years agoCommunity Support
Hi Krish89 ,
I am sorry that I am not familiar with Excel. If you can explain more about the logic of Rep column , I will write the right formula for it.
Best Regards,
Dedmon Dai