Forum Discussion
Anonymous
6 years agoNot applicable
Infinity Value appears even though a Value should appear
I'm trying to get the converted currency Cost in Sterling by using a vlookup from my currency file as follows: Cost Price GBP = If(Products[Cost Price Currency]="GBP",Products[Cost Price],Produc...
amitchandak
Super User
6 years agoAnonymous , Try like
Cost Price GBP = If(Products[Cost Price Currency]="GBP",Products[Cost Price],
divide(Products[Cost Price],LOOKUPVALUE('exrates-monthly'[Currency units per £1 ],'exrates-monthly'[Currency Code],Products[Cost Price Currency]))
)
Anonymous
6 years agoNot applicable