Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello I have the following situation.
I want to count the months without sales to the date a seller has, from their start date.
In my calendar table I have registered the date of entry of the seller. Imagine that your income was in January 2023 and until April it has no sales.
It would take 4 months without sales.
This is what I need, obviously I have my measure of Total Sales in general.
Hello good day community,
I want to make a measurement with dax, which tells me the months where there were only sales, this measurement will help me to calculate the average sales in those months that there were sales, or if there was a direct way to take the average sales only from those months in which there was a sale.
Thank you.
Regards, Best regards.
Hello Friend, if it worked but tells me every month where there were no sales. The equivalent in excel would be COUNT. WHITE.
I think I did not formulate my question correctly. What I needed is to know how many months a customer has been without sales since their last sale. The answer was very simple, just use the DATEIFF function.
Thank you very much anyway.
hello @Syndicate_Admin
My suggestion :
Measure =
var _temp =
FILTER(
ADDCOLUMNS(
SUMMARIZE(
'Calendar',
'Calendar'[Month (Year)]
),
"_total",Sales[Sales Amount]
),
ISBLANK(Sales[Sales Amount])
)
return
COUNTROWS(_temp)note: you need to have a month year column in the calendar table !
Best regards
Bruno Costa | Impactful Individual
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
You can also check out BI4ALL's website and our data solutions!
Best regards
Bruno Costa | Super User
Did I help you to answer your question? Accepted my post as a solution! Appreciate your Kudos!!
Take a look at the blog: PBI Portugal
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 40 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |