Hi there,
I have an odd problem and I don't understand why it is happening, and hope someone can help me.
I have a toggle on a form where if an user selects yes, it will go to one screen, otherwise it goes to another. However, this doesn't work. If I use the same method on the screen itself, i.e. not inside a form, it works fine. Why is that?
OnSuccess:
If(togReg.Value = true,
Navigate(scrInfo),
Navigate(scrSuccess)
)
Thanks.
Solved! Go to Solution.
Just to say this is no longer required. I re-created part of the form with the same controls etc and it works fine, so I can only assume something was corrupted.
Hello @JoeChanUK ,
I once had a similar issue with this.
« Toggle.Value » returns a boolean value, and actually testing if it was equal to "true" gave me wrong results.
Could you try the code below please and see how it goes ?
If(togReg.Value,
Navigate(scrInfo),
Navigate(scrSuccess)
)
I'm afraid it comes back with an error if I do that... it will say incompatible type for comparison.
Just to say this is no longer required. I re-created part of the form with the same controls etc and it works fine, so I can only assume something was corrupted.
User | Count |
---|---|
261 | |
127 | |
101 | |
49 | |
47 |