Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Charity (Charity ) has a relationship with Centcom Charity
My issue is: I am trying to count how many Saved Monthly after the "start date", The code below shows the count before taking account of the Start Date.
Inbound Save = CALCULATE(COUNTROWS('Centcom'), 'Centcom'[CAMPAIGN] = "Inbound",'Centcom'[DISPOSITION] IN {"Saved Monthly Conf. Back.", "Saved Monthly Conf. Original","Saved Monthly WLCM back"} ,Charity[TPV Save] = "Yes")
I want the DAX function to count after the Start Date.
Solved! Go to Solution.
Hi,
Inbound Save =
SUMX (
Centcom,
IF (
'Centcom'[CAMPAIGN] = "Inbound",
IF (
'Centcom'[DISPOSITION]
IN {
"Saved Monthly Conf. Back.",
"Saved Monthly Conf. Original",
"Saved Monthly WLCM back"
},
IF (
RELATED ( Charity[TPV Save] ) = "Yes",
IF ( Centcom[Date] > RELATED ( Charity[Start Date] ), 1, 0 )
)
)
)
)Regards
Hi,
Inbound Save =
SUMX (
Centcom,
IF (
'Centcom'[CAMPAIGN] = "Inbound",
IF (
'Centcom'[DISPOSITION]
IN {
"Saved Monthly Conf. Back.",
"Saved Monthly Conf. Original",
"Saved Monthly WLCM back"
},
IF (
RELATED ( Charity[TPV Save] ) = "Yes",
IF ( Centcom[Date] > RELATED ( Charity[Start Date] ), 1, 0 )
)
)
)
)Regards
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 11 | |
| 8 | |
| 8 | |
| 8 |