Forum Discussion
AshPower
9 years agoFrequent Visitor
Help with display chart
My table have following column Datetime/Device/TestName/Pass/Fail Note: If test passed at specific Datetime Pass value is 1 and Fail is 0. I am looking to diaply the pass and fail value for the ...
MFelix
9 years agoSuper User
Don't know if the question.is relsted with this but try to change the dot-comma by comma cannot repest your error on the computer right now.
MFelix
MFelix
AshPower
9 years agoFrequent Visitor
I am using this
ValFail = IF(
VALUES(ResultLDR[Result])= "Fail",
UNICHAR(9635),
UNICHAR(9634)
)
& REPT(" ", 5)
- MFelix9 years agoSuper User
Try to use this one:
PASS/FAIL = IF( FIRSTNONBLANK(Table1[Pass_Fail],"Fail")="Fail", UNICHAR(9634), UNICHAR(9635) ) & REPT(" ", 5)Regards,
MFelix