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.
Hi,
is there a way to put this on measure currently my issue is getting the retention of customer
logic is = COUNT the dealer with maturing = cash then for the past 3 months with purchase order
current measure :
=SUMMARIZE(FACT_ONEPC,FACT_ONEPC[DLR_LINK],"Maturing",CALCULATE([Maturing Amt],FACT_ONEPC[TRANS_TYPE] = "CASH" && DATEADD(FACT_ONEPC[INV_DT],-3,MONTH )))
thanks.
Solved! Go to Solution.
Hi,
I am not sure if I understood your question correctly, but please try something like below.
current measure : =
VAR _t =
SUMMARIZE (
FACT_ONEPC,
FACT_ONEPC[DLR_LINK],
"Maturing",
CALCULATE (
[Maturing Amt],
FACT_ONEPC[TRANS_TYPE] = "CASH"
&& DATEADD ( FACT_ONEPC[INV_DT], -3, MONTH )
)
)
RETURN
COUNTROWS ( _t )
Hi,
I am not sure if I understood your question correctly, but please try something like below.
current measure : =
VAR _t =
SUMMARIZE (
FACT_ONEPC,
FACT_ONEPC[DLR_LINK],
"Maturing",
CALCULATE (
[Maturing Amt],
FACT_ONEPC[TRANS_TYPE] = "CASH"
&& DATEADD ( FACT_ONEPC[INV_DT], -3, MONTH )
)
)
RETURN
COUNTROWS ( _t )
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |