10-14-2009 11:30 AM
Hi ,
My VI is giving out 3 booleans and 2 numeric values which are needed to be tested. Can we use "multiple numeric limit test" and if so how do we do that?
Regards
Prav
10-14-2009 11:54 AM
09-06-2024 05:47 AM
Str(Locals.DATA_valid)=="True"?1:0
09-16-2024 02:19 PM
@petrus.prins wrote:
Str(Locals.DATA_valid)=="True"?1:0
If DATA_valid is a boolean, then the expression can simply be:
Locals.DATA_valid == True ? 1 : 0
09-19-2024 02:05 AM
@ee-jallen wrote:
@petrus.prins wrote:
Str(Locals.DATA_valid)=="True"?1:0
If DATA_valid is a boolean, then the expression can simply be:
Locals.DATA_valid == True ? 1 : 0
Locals.DATA_valid ? 1 : 0
09-19-2024 10:26 AM
@Laurent_B wrote:
@ee-jallen wrote:
@petrus.prins wrote:
Str(Locals.DATA_valid)=="True"?1:0
If DATA_valid is a boolean, then the expression can simply be:
Locals.DATA_valid == True ? 1 : 0
Locals.DATA_valid ? 1 : 0
That's what I originally intended but somehow got mentally stuck on the True from the original post.