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.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |