Forum Discussion
MPR
Advocate I
8 years agoDAX Formula Showing Blank
Hello, I have shared a folder with the pbix file and source file. I hope you can access it. Folder I have a function in DAX that is killing me. I have given up way too much time and sle...
- 8 years ago
MaxIndex was not getting calculated correctly, so we calculate maxindex of the account you are inerested, same I did for other DAX
Var BankAcct1 = "1008 · Chase Checking"
Var MaxIndex =
CALCULATE(MAX('Sanitized Transaction Detail v2'[Index]),
'Sanitized Transaction Detail v2'[Account] = BankAcct1 )
parry2k
Super User
8 years agoMaxIndex was not getting calculated correctly, so we calculate maxindex of the account you are inerested, same I did for other DAX
Var BankAcct1 = "1008 · Chase Checking"
Var MaxIndex =
CALCULATE(MAX('Sanitized Transaction Detail v2'[Index]),
'Sanitized Transaction Detail v2'[Account] = BankAcct1 )