Forum Discussion
MannyDe_La_Cruz
5 years agoQuickbase Staff
Hi There Quickbase Admin!
Happy to help with this one!
From what your formula reads:
If ([Currency]="AUD", [Total Estimate AUD],[Total Estimate AUD]*[Exchange rate],
     
--> This is saying to display the [Total Estimate AUD] field when the [Currency] field equals "AUD", ELSE (so if it equals "Euro" being that from your description, there are only two choices), it runs [Total Estimate AUD]*[Exchange rate]
[Currency]="Euro", [Total Estimate Euro],[Total Estimate Euro]*[Exchange rate])
--> This states a similar process, but for "Euro", so now there are two clashing conditions for the "Euro" selection.
Would you mind giving some detail as to what you are trying to achieve / display so I can better help troubleshoot the formula?
Thank you!
------------------------------
Manny De La Cruz
Customer Adoption Manager
Quickbase
------------------------------
Happy to help with this one!
From what your formula reads:
If ([Currency]="AUD", [Total Estimate AUD],[Total Estimate AUD]*[Exchange rate],
--> This is saying to display the [Total Estimate AUD] field when the [Currency] field equals "AUD", ELSE (so if it equals "Euro" being that from your description, there are only two choices), it runs [Total Estimate AUD]*[Exchange rate]
[Currency]="Euro", [Total Estimate Euro],[Total Estimate Euro]*[Exchange rate])
--> This states a similar process, but for "Euro", so now there are two clashing conditions for the "Euro" selection.
Would you mind giving some detail as to what you are trying to achieve / display so I can better help troubleshoot the formula?
Thank you!
------------------------------
Manny De La Cruz
Customer Adoption Manager
Quickbase
------------------------------
- QuickbaseAdmi155 years agoQrew MemberHi Manny , Thanks for helping me out
 So basically I want the Total Amount Price is in total from either currency "AUD" or "Euro" with the exchange rate calculation already.
 Total Estimate AUD : Formula-Numeric --> [qty]*[price AUD]
 Total Estimate Euro : Formula-Numeric --> [qty]*[Price Euro]
 Total Amount Prince :
 If currency "AUD" then calculate Total Estimate AUD * Exchange Rate ,
 else currency "Euro" then calculate Total Estimate Euro * Exchange Rate
 I tried with this formula but didnt work. Any idea whats the best way to do with the formula ?
 I hope I explain it clear , I am only beginning with the formula functions.
 ------------------------------
 Quickbase Admin
 ------------------------------- MarkShnier__You5 years agoQrew Legend try this
 IF(
 [Currency]="Euro", [qty]*[Price Euro],
 [Currency]="AUD", [qty]*[Price AUD])
 ------------------------------
 Mark Shnier (YQC)
 mark.shnier@gmail.com
 ------------------------------- QuickbaseAdmi155 years agoQrew MemberThanks Mark,
 I will try this one
 ------------------------------
 Quickbase Admin
 ------------------------------