Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello ,
Can you please let me know calcualting below dax function :
Account Retention : # of active customers that have ramaning active every month ,over the last 12 months .
New coustomer : # of custmers that have not purchase ovet the prevoius 90 days
active account : # of customers that purchased on the last month
Datasource: using one fact table with order date and Date dim table
Solved! Go to Solution.
Try to create measures like below:
Account Retention =
var active_month=
CALCULATE(
COUNT(Sheet3[Customer]),
FILTER(
ALLEXCEPT(Sheet3,Sheet3[date].[Year],Sheet3[date].[Month],Sheet3[Customer]),
Sheet3[date]>=EDATE(TODAY(),-12)
)
)
return CALCULATE(
DISTINCTCOUNT(Sheet3[Customer]),FILTER(Sheet3,active_month=12))
New Customer Date =
CALCULATE (
MIN ( Sheet3[date]),
ALLEXCEPT (
Sheet3,
Sheet3[Customer]
)
)
New Customers =
VAR CustomersWithNewDate =
CALCULATETABLE (
ADDCOLUMNS (
VALUES ( Sheet3[Customer] ),
"NewCustomerDate",[New Customer Date]
),
ALLEXCEPT ( Sheet3, Sheet3[Customer] )
)
VAR NewCustomers =
FILTER (
CustomersWithNewDate,
[NewCustomerDate]
IN CALENDAR(TODAY()-180,TODAY())
)
VAR Result =
COUNTROWS ( NewCustomers )
RETURN
Result
active account = CALCULATE(DISTINCTCOUNT(Sheet3[Customer]),FILTER(Sheet3,Sheet3[date]>=EDATE(TODAY(),-1)))
Try to create measures like below:
Account Retention =
var active_month=
CALCULATE(
COUNT(Sheet3[Customer]),
FILTER(
ALLEXCEPT(Sheet3,Sheet3[date].[Year],Sheet3[date].[Month],Sheet3[Customer]),
Sheet3[date]>=EDATE(TODAY(),-12)
)
)
return CALCULATE(
DISTINCTCOUNT(Sheet3[Customer]),FILTER(Sheet3,active_month=12))
New Customer Date =
CALCULATE (
MIN ( Sheet3[date]),
ALLEXCEPT (
Sheet3,
Sheet3[Customer]
)
)
New Customers =
VAR CustomersWithNewDate =
CALCULATETABLE (
ADDCOLUMNS (
VALUES ( Sheet3[Customer] ),
"NewCustomerDate",[New Customer Date]
),
ALLEXCEPT ( Sheet3, Sheet3[Customer] )
)
VAR NewCustomers =
FILTER (
CustomersWithNewDate,
[NewCustomerDate]
IN CALENDAR(TODAY()-180,TODAY())
)
VAR Result =
COUNTROWS ( NewCustomers )
RETURN
Result
active account = CALCULATE(DISTINCTCOUNT(Sheet3[Customer]),FILTER(Sheet3,Sheet3[date]>=EDATE(TODAY(),-1)))
User | Count |
---|---|
3 | |
2 | |
1 | |
1 | |
1 |
User | Count |
---|---|
10 | |
8 | |
5 | |
5 | |
4 |