Forum Discussion
Rsanjuan
9 years agoAdvocate III
Conditional column calculation (If-Then)
Hi, I have two columns, where the majority of the data are the same, but there are a few entries in one column that are 0 and the correct amount is in one column and vice versa My init...
- 9 years ago
Hi There.
You can create a conditional column in Query Editor as shown in the screenshot.
Conditional Column in Query EditorFinal output
radpir
9 years agoResolver II
hi there,
here's the formula for the new column:
= if [Oppty.Line.Grant Total.amount] = 0 then [Bid.GrandTotal]
else if [Bid.GrandTotal] = 0 then [Oppty.Line.Grant Total.amount]
else [Oppty.Line.Grant Total.amount]
hope this helps,
radpir