Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
19 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
24 | |
10 | |
10 | |
9 | |
6 |