Forum Discussion
Anonymous
4 years agoNot applicable
Establishing Quartiles for Summarized Data
Hi, I am attempting to take a table of data grouped using the SUMMARIZE function and assign quartiles in an added column. I'm using a table variable to store the table of summarized data, but the va...
- 4 years ago
Are you trying to create a measure or a calculated table? If it's a calculated table, then I think you just need to replace "vTaskCount >= PXX" with "[TaskCountByClient] >= PXX".
As a side note, IntelliSense/AutoComplete isn't always right. It occasionally gives me angry red underlines when my DAX is fine, but this mostly happens in uncommon situations.
AlexisOlson
Super User
4 years agoAre you trying to create a measure or a calculated table? If it's a calculated table, then I think you just need to replace "vTaskCount >= PXX" with "[TaskCountByClient] >= PXX".
As a side note, IntelliSense/AutoComplete isn't always right. It occasionally gives me angry red underlines when my DAX is fine, but this mostly happens in uncommon situations.
- Anonymous4 years agoNot applicable
Thank you! This fixed the issue.