Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Watch value of a panel variable

Hi,

I have defined a panel variable like  that:

year_in_course = Year(max(fecha))

Where fecha is a fiedl of  resident table

Is there any way to watch/debug the value of the panel variable in a sesion??

Thanks

1 Solution

Accepted Solutions
fvelascog72
Partner - Specialist
Partner - Specialist

Hi,

You can use a Text Object and write =$(year_in_course)

I hope it helps.

View solution in original post

3 Replies
fvelascog72
Partner - Specialist
Partner - Specialist

Hi,

You can use a Text Object and write =$(year_in_course)

I hope it helps.

Anonymous
Not applicable
Author

Hi Federico, thanks,

I have a problem defining a panel variable:

I hace;

fecha_tope = max(fecha)

where fecha is a field of a resiente table, I want to get the max value of tha field.

This max value is '16/05/2015'

But when I make a textobject as you said:

=$(fecha_tope)

it shows:

0'0015888

What is wrong??

Thanks in advance

fvelascog72
Partner - Specialist
Partner - Specialist

In panel variable use = before Year(max(fecha))

Variable -> year_in_course

Value -> = Year(max(fecha))