Forum Discussion
mvananaken
9 years agoHelper II
CALCULATETABLE VALUES with filter
Hello Power BI Folks, I created a calculated table bases on the folowing DAX and this DAX still works :-) Workschedule = SUMMARIZE( GENERATE( M, CALCULATETABLE (VALUES( 'Calendar'[Date]),DATE...
- Anonymous9 years ago
Hi mvananaken,
You can simply use the "Workschedule" table to get a new table which you want.
Formula:
New Table =CALCULATETABLE( Workschedule, Filter(All(Workschedule),M[ActivityId]=BLANK())
Regards,
Xiaoxin Sheng
Anonymous
9 years agoNot applicable
Hi mvananaken,
You can simply use the "Workschedule" table to get a new table which you want.
Formula:
New Table =CALCULATETABLE( Workschedule, Filter(All(Workschedule),M[ActivityId]=BLANK())
Regards,
Xiaoxin Sheng
- mvananaken9 years agoHelper II
Thanks Anonymous! Marked as solution! Simple and effective!