Hi,
I have issue to pass same variable to another screen with error. please help.
Screen1:
2 buttons:
1st button onSelect:
Navigate(
'Screen2',
ScreenTransition.Fade,
{
varCKno: ThisItem.'Closed Case No.'
}
)
2nd button onSelect:
Navigate(
'Screen3',
ScreenTransition.Fade,
{
varCKno: ThisItem.'Closed Case No.'
}
)
The error keep appear on my 2nd button "varCKno: ThisItem.'Closed Case No.'" any idea?
When I test run, I can click on the 1st button, but unable to click on 2nd button.