Feb 5, 2004 #1 Gizmo0917 Technical User Joined Dec 5, 2003 Messages 43 Location 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 Joined Mar 23, 2002 Messages 20,180 Location 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 Joined Dec 5, 2003 Messages 43 Location US Thanks I was getting close! That works! Upvote 0 Downvote