Feb 5, 2004 #1 Gizmo0917 Technical User Dec 5, 2003 43 US I have a formula that goes like this: if {Tank_Log.Total Charges per Inometer}>12000 then 12000 I want to add to that formula that if it is less than 12000 then let the original amount show. What do I need to add to this?? Thanks! Gizmo
I have a formula that goes like this: if {Tank_Log.Total Charges per Inometer}>12000 then 12000 I want to add to that formula that if it is less than 12000 then let the original amount show. What do I need to add to this?? Thanks! Gizmo
Feb 5, 2004 #2 synapsevampire Programmer Mar 23, 2002 20,180 US Try: Ff {Tank_Log.Total Charges per Inometer}>12000 then 12000 else {Tank_Log.Total Charges per Inometer} -k Upvote 0 Downvote
Try: Ff {Tank_Log.Total Charges per Inometer}>12000 then 12000 else {Tank_Log.Total Charges per Inometer} -k
Feb 5, 2004 Thread starter #3 Gizmo0917 Technical User Dec 5, 2003 43 US Thanks I was getting close! That works! Upvote 0 Downvote