Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

Let function calc problem


This topic is 7031 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

The follwing script works for d > 14 and turns days_return red. However, I cant get it to work for d < 14 and leave days_return black. Any ideas? TIA

Ivan

If (Return_Date > 1 ;

Let (d = Return_Date-InvoiceDate;

If ( d > 14; TextColor ( Days_Return ; RGB ( 255 ;0 ; 0)))))

Posted

Try:

Case (

Return_Date - InvoiceDate > 14 ; TextColor ( Days_Return ; RGB ( 255 ; 0 ; 0 ) ) ;

Days_Return

)

I didn't catch the significance of Return_Date > 1.

This topic is 7031 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.