Forum Discussion
BNemuri
Jul 05, 2023Copper Contributor
Based on condition populate 3rd vale
Hi, I have 3 column values in my excel and would like to populate 3rd value based on first/second col values. I tried with filters, If condition but couldn’t get results, how do I get this fixed? ...
- Jul 05, 2023
Depends on each Excel version you are, that could be like
=XLOOKUP($A3&"="&$B3, 'Lookup values'!$A$3:$A$20 & "=" & 'Lookup values'!$B$3:$B$20, 'Lookup values'!$C$3:$C$20, "" )
BNemuri
Jul 05, 2023Copper Contributor
Here are the details, where I have 3 columns with values in Lookup tab
In the MainSheet tab, I would like to auto-populate col3 based on the col1 & 2
Ex: when I enter "SST" in col1 and "A" in col2, then it should populate "1" in col3.
Hope I provided complete details. I really appreciate your support on this.
Thanks
Bhaskar
SergeiBaklan
Jul 05, 2023Diamond Contributor
Depends on each Excel version you are, that could be like
=XLOOKUP($A3&"="&$B3, 'Lookup values'!$A$3:$A$20 & "=" & 'Lookup values'!$B$3:$B$20, 'Lookup values'!$C$3:$C$20, "" )- BNemuriJul 05, 2023Copper ContributorThank Sergai, it worked.
- SergeiBaklanJul 06, 2023Diamond Contributor
BNemuri , you are welcome