Good day,
I am having issues with the default value of my toggle button.
I set the default value of my toggle button to:
If(!IsBlank(Parent.Default), Parent.Default, false)
But when I put that code on the default of the toggle button, a warning shows on it and says:
Warning: Expecting a true or false value. The current value may cause unexpected behavior.
Is there a better approach on this one? Because the Parent.Default value is being used for the offline data handling.
Thanks!
K.D.
It might be due to the Parent.Defualt is a generic function and it is unable to read it. Try specifying the value of the toggle
This would be occurring because you are mismatching your returns.
Assuming that the Parent is connected to a column in your datasource that is a true or false (yes/no) type, then you can consider changing your formula to the following:
Coalesce(Parent.Default, false)
If your Parent column is NOT a true false type, then you will only be able to do something like:
!IsBlank(Parent.Default)
If you have some other scenario for the parent column, post back and we can take a look at the scenario.
I hope this is helpful for you.
User | Count |
---|---|
225 | |
101 | |
93 | |
57 | |
31 |
User | Count |
---|---|
284 | |
116 | |
109 | |
63 | |
57 |