Forum Discussion
Anonymous
2 years agoNot applicable
Calendar all the month Using DAX
Dear Team, I've Fact table which have data like Apple have 12 months data Orange have 3 months data Banana have 4 months data if i filter fact table for orange it will show 12 months perio...
bhanu_gautam
2 years agoSuper User
Anonymous , You can create new column for this using formula
FixedTable =
ADDCOLUMNS(
SUMMARIZE('FactTable', 'FactTable'[Fruit]),
"Month", IF(COUNTROWS('FactTable') > 0, 'FactTable'[Month], BLANK()),
"Value", IF(COUNTROWS('FactTable') > 0, 'FactTable'[Value], 0)
)
and use this table in visualization
- Anonymous2 years agoNot applicable
Dear Bhanu,
Thanks for response.
Value is calculated using measure however this may not works so end up with error
Measure created like Adj Value = Amount / Qty