Forum Discussion
udhoot7141
May 28, 2021Copper Contributor
excell
I need to pull out a value from a table. If A=250, in another table the values are say..250, 280, 350, 400. and the second column has another value . Like for 250 is 30, 280 is 35, 350 is 40.... so o...
- May 29, 2021
That could be like
LOOKUP(value, {0, 250, 280, 350, 400},{1,2,3,4,5})if use another table data instead
SergeiBaklan
May 29, 2021Diamond Contributor
That could be like
LOOKUP(value, {0, 250, 280, 350, 400},{1,2,3,4,5})
if use another table data instead
udhoot7141
May 29, 2021Copper Contributor
Thank you very much
- SergeiBaklanMay 31, 2021Diamond Contributor
You are welcome. But better not to hardcode constants inside the formula but use table with them. Above is only idea.
- udhoot7141May 31, 2021Copper ContributorYes I did that. I did not hardcore it but used the values from a table.
- SergeiBaklanMay 31, 2021Diamond Contributor
Great!