Jul 05 2023 07:32 AM
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?
Pls advise
Jul 05 2023 07:47 AM
Hi @BNemuri
according to your description, it sounds like some IF statements. But in order to help you, we would need some more details, like what exactly are the rules to fill the third column.
Screenshots and information about your Excel version would also help.
Kind regards,
Martin
Jul 05 2023 09:51 AM
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
Jul 05 2023 10:18 AM
SolutionDepends 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, "" )
Jul 05 2023 10:18 AM
SolutionDepends 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, "" )