Forum Discussion
Disconnect Table to filter data and visuals based on selection
- 7 years ago
Hi Anonymous
You want "PMSComplaintsMN" measure to show values of "No Trend" when selecting ""No Trend", right?
From your measure
Significance Y = IF( '_Measures'[p-value] <= 0.05, "Significant Trend", "No Trend" )
It seems "No Trend" means '_Measures'[p-value] > 0.05
If so, you could create "PMSComplaintsMN" measure as below:
PMSComplaintsMN = CALCULATE ( IF ( ISBLANK ( COUNTA ( 'PMS_COMPLAINT'[MATERIAL_ID] ) ), BLANK (), COUNTA ( 'PMS_COMPLAINT'[MATERIAL_ID] ) ), FILTER ( ALLSELECTED ( PMS_FINANCIAL_PDS[ROLL12_COMPLETE_PDS_IND] ), '_Measures'[p-value] > 0.05 ) ) + 0(ps: if your file contains some important information or private information, please delete it from here, next time, if you need to share files, just share a simple example)
Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous
You want "PMSComplaintsMN" measure to show values of "No Trend" when selecting ""No Trend", right?
From your measure
Significance Y = IF( '_Measures'[p-value] <= 0.05, "Significant Trend", "No Trend" )
It seems "No Trend" means '_Measures'[p-value] > 0.05
If so, you could create "PMSComplaintsMN" measure as below:
PMSComplaintsMN =
CALCULATE (
IF (
ISBLANK ( COUNTA ( 'PMS_COMPLAINT'[MATERIAL_ID] ) ),
BLANK (),
COUNTA ( 'PMS_COMPLAINT'[MATERIAL_ID] )
),
FILTER (
ALLSELECTED ( PMS_FINANCIAL_PDS[ROLL12_COMPLETE_PDS_IND] ),
'_Measures'[p-value] > 0.05
)
) + 0
(ps: if your file contains some important information or private information, please delete it from here, next time, if you need to share files, just share a simple example)
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
All your assumptions are correct how would you do the measure for significant trend. When p-value is <=0.05. Same question when selecting filter significant trend from disconnect table..