Forum Discussion
DAX FUNCTION
- 9 years ago
Hi Anonymous,
You use the VALUE function, which converts a text string that represents a number to a number. For example, VALUE("3") returns number 3. What's the type of ORG column? It is text like "32", then VALUE(ORG) returns number type, which is nou used to compare with text type, like VALUE(ORG)<“699”. Mybe you can change it to VALUE(ORG)<VALUE(“699”), and also mix corresponding arguments in Anonymous posted formula using similar way. Please try and check if it work fine.
Best Regards,
Angelia - Anonymous9 years ago
You need to indent and format your code so you can read it. You have the wrong number of parentheses in the wrong places.
Your first OR function seems to have about a dozen arguments when it is supposed to only have 2, so I assume you're just getting an error message?
Yes I get that error message but what if I want to use multiple arguments outside of excel? I read from another forum about combining arguments with either && or || but its still not working.