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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
JYOCH
Frequent Visitor

Date filter selection issue

Hi All,

I have a situation....

I have a date filter and have a dax measure written to get result based on the filter selection. the filter is working fine if i select one month or more than a month but doesnt work if i select few days like 10 or 5 or 16 days. below are the measure and the filter

OOS FIL Cantidad Entregada =
VAR DiasDelMes=
    SWITCH(
        MONTH('All Data'[Fecha]),
        1,31,
        2, 29,
        3, 31,
        4, 30,
        5, 31,
        6, 30,
        7, 31,
        8, 31,
        9, 30,
        10, 31,
        11, 30,
        12, 31)
RETURN
DIVIDE('All Data'[Fill Cantidad Entregada], DiasDelMes)

 

JYOCH_0-1712583668953.png

Kindly help

3 REPLIES 3
JYOCH
Frequent Visitor

I want to show a table with measures i created values like out of stock percentage,entire volume. The values are populating properly when i select one complete month but when i select few dates like 15 days from my calender, the values are not coming out properly.

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).

Do not include sensitive information or anything not related to the issue or question.

If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...

Please show the expected outcome based on the sample data you provided.

Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

lbendlin
Super User
Super User

Why not do a COUNTROWS(Dates) ?

 

What is your expected outcome ?

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors