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 ...
AshPower
9 years agoFrequent Visitor
I am using this
ValFail = IF(
VALUES(ResultLDR[Result])= "Fail",
UNICHAR(9635),
UNICHAR(9634)
)
& REPT(" ", 5)
MFelix
9 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