I need some help with an if then statement. I'm trying to have a cell auto convert currency depending on the currency label:
=if((AND($F6=1,$AJ6="KRW"),$AI6*Settings!$D$7($F6=1,$AJ6>="JPY"),$AI6*Settings!$D$8))
This yields an error.
This works:
=if(AND($F6=1,$AJ6="KRW"),$AI6*Settings!$D$7)
but I need to have it be able to pull in different conversion rates from the Settings worksheet depending on the currency label in AJ6.
Thanks!