Forum Discussion
Anonymous
6 years agoNot applicable
Comparing true/false for text, error
Hi,
I simply want to see if these to if-conditions are true. Both are set as text:
= IF(
I simply want to see if these to if-conditions are true. Both are set as text:
= IF(
CS_ApprovalDocumentApprovalEntries[SequenceNo] = "2" &
RELATED(purchaseDocuments[status]) = "Pending Approval";"Ja";"Nej")
But I get this message "DAX comparison operations do not support comparing values of type True/False with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values."
- Anonymous6 years ago
You used & instead of &&
& is the text concatenation operator
3 Replies
- amitchandakSuper User
Anonymous , If the above solution has solved your issue, can you mark it as a solution.
- AnonymousNot applicable
Sorry, yes it worked and I can see you already marked it as a solution 🙂
- AnonymousNot applicable
You used & instead of &&
& is the text concatenation operator