=IF(B3<=50,HLOOKUP(B3,coldchart,VLOOKUP(D3,Tables!$M$5:$N$13,2)))
=IF(B3>=67,HLOOKUP(B3,heatstress,VLOOKUP(C3,Tables!$M$26:$N$33,2)))
How do I combine these two if statements correctly, and add a false condition to just show B3 if the temperature thats looked up is out of range, the number 65 is out of range on my chart so if it was in B3, it would just get printed. But, if it were like -25, it would use the hlookup to find the corresponding row of the wind speed and find the windchill, likewise for heat index.
here is an if statement I am trying to use for a few charts I made, the first statement works, but the second one doesnt. Is the syntax correct for implementing both statements? It looks up a temperature and whether or not its a certain range it will look into either a cold or a hot chart of temperatures and return a value for either heat index or wind chill.
How do I get these
=IF(B3>=67,HLOOKUP(B3,heatstress,VLOOKUP(C3,Tables!$M$26:$N$33,2)))
How do I combine these two if statements correctly, and add a false condition to just show B3 if the temperature thats looked up is out of range, the number 65 is out of range on my chart so if it was in B3, it would just get printed. But, if it were like -25, it would use the hlookup to find the corresponding row of the wind speed and find the windchill, likewise for heat index.
here is an if statement I am trying to use for a few charts I made, the first statement works, but the second one doesnt. Is the syntax correct for implementing both statements? It looks up a temperature and whether or not its a certain range it will look into either a cold or a hot chart of temperatures and return a value for either heat index or wind chill.
How do I get these
