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

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

Recommended Posts

Posted

Hi,

I am just wondering how to see the variable "currentList", "existingSelection", and filteredList inside calculation. The debug tool in filemaker advanced didn't have it. Many Thanks.

Kent

Posted

Hi Kent, :^)

In addition to Ian's input, if you want to see variables defined within a Let() statement within a calculation (whether from field definitions, script or conditional format), you can comment out the calculation portion of the script // and replace it with the variable name. So if your calc is something like:

Let (

currentList = bla bla

;

the calc here

)

You can change it to:

Let (

currentList = bla bla

;

//the calc here

currentList

)

... and it will display the value from that calculation variable. If the calculation portion (the 'the calc here' part) is more than one line, instead wrap it with start of /* and end of */

  • Like 1

This topic is 4668 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.