Forum Discussion
FredLEGUEN
Helper III
5 years agoSearch between 2 account number
Hi community, I'm building a report for an accounting company Most of the DAX measures are easy to write. Like this one CALCULATE([SommeC];SourceAccess[Comptes]="74000000") But some measure...
amolrs
5 years agoFrequent Visitor
Hi FredLEGUEN ,
How about changing the data type of Account Number to Whole Number and then trying the formula you suggested.
The formula needs to be changed to include the && operator instead of || to something like:
CALCULATE([SommeC];SourceAccess[Comptes]>="64110000" && SourceAccess[Comptes]<="64145000")
Cheers,
Amol