Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sanju24
Frequent Visitor

Best Selling Days

I have Products as well Date Table.I want to find out Best Selling Days out of it. For this I have Calculated "Average Sales Per Day"

Averagesalessperday = AVERAGEX(VALUES('Calendar Table'[Date]),[Revenue]) and Best Selling date 
Best Selling Dates =
MAXX(TOPN(5,SUMMARIZE('Calendar Table','Calendar Table'[Date],"Selling Day",[Averagesalessperday]),[Selling Day]),'Calendar Table'[Date])  and format at last to find out "Day" , as per solution given in this platform earlier on this topic. Unfortunately i am getting blank value for this measure.Please help me on this.

Thanks
1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @sanju24 ,

I created a sample pbix file(see the attachment), please check if that is what you want. 

1. Create a measure as below 

Flag = 
VAR _seldate =
    SELECTEDVALUE ( 'Calendar Table'[Date] )
VAR _tab =
    SUMMARIZE (
        ALLSELECTED ( 'Calendar Table' ),
        'Calendar Table'[Date],
        "@avgsale", [Averagesalessperday]
    )
VAR _tab2 =
    ADDCOLUMNS ( _tab, "@rank", RANKX ( _tab, [@avgsale],, DESC, DENSE ) )
VAR _rank =
    MAXX ( FILTER ( _tab2, [Date] = _seldate ), [@rank] )
RETURN
    IF ( _rank <= 5, 1, 0 )

2. Create a visual and apply the visual-level filter on the visual with the condition(Flag is 1)

yingyinr_2-1677821586841.png

 

If the above one can't help you, please provide some raw data in your table (exclude sensitive data) with Text format, your visual Fields settings and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
sanju24
Frequent Visitor

Thank You it worked.

v-yiruan-msft
Community Support
Community Support

Hi @sanju24 ,

I created a sample pbix file(see the attachment), please check if that is what you want. 

1. Create a measure as below 

Flag = 
VAR _seldate =
    SELECTEDVALUE ( 'Calendar Table'[Date] )
VAR _tab =
    SUMMARIZE (
        ALLSELECTED ( 'Calendar Table' ),
        'Calendar Table'[Date],
        "@avgsale", [Averagesalessperday]
    )
VAR _tab2 =
    ADDCOLUMNS ( _tab, "@rank", RANKX ( _tab, [@avgsale],, DESC, DENSE ) )
VAR _rank =
    MAXX ( FILTER ( _tab2, [Date] = _seldate ), [@rank] )
RETURN
    IF ( _rank <= 5, 1, 0 )

2. Create a visual and apply the visual-level filter on the visual with the condition(Flag is 1)

yingyinr_2-1677821586841.png

 

If the above one can't help you, please provide some raw data in your table (exclude sensitive data) with Text format, your visual Fields settings and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.