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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
AmyD
Helper I
Helper I

Date Range Slicer - Limit to Month Selection

Hi All,

 

I'm looking at this downloaded visual. Does anyone know how to limit the user selection - for the 'from' range, to only be able to select the 1st of the month, and for the 'to' range to be only able to select the end day of the month.

 

AmyD_0-1776847028737.png

 

Many thanks

1 ACCEPTED SOLUTION
SamInogic
Solution Sage
Solution Sage

Hi,

 

Current Limitation

The Date Range Selector (custom visual) does not support restricting user selection to specific days like:

  • Only 1st of the month for From
  • Only end of month for To

This kind of constraint is not available out-of-the-box in that visual.

Recommended Workarounds

Option 1 – Use a Month-Level Slicer (Best Practice)

Instead of daily dates, create a Month column in your Date table:

YearMonth = FORMAT('DateTable'[Date], "YYYY-MM")

Then:

  • Use this field in a slicer
  • Change slicer type to Between or Dropdown

This ensures users select full months only

Option 2 – Use Start/End of Month Columns

Create helper columns:

StartOfMonth = STARTOFMONTH('DateTable'[Date])
EndOfMonth   = ENDOFMONTH('DateTable'[Date])

Use these fields in slicers so users naturally pick valid boundaries.

Option 3 – Enforce via Measure (Soft Restriction)

You can validate selection and show results only when valid:

Valid Selection =
IF(
    DAY(MIN('DateTable'[Date])) = 1 &&
    DAY(MAX('DateTable'[Date])) = DAY(EOMONTH(MAX('DateTable'[Date]),0)),
    1,
    0
)

Then:

  • Use this as a visual filter = 1
  • Or show a message like “Please select full months only”

Option 4 – Use Built-in Relative Date Slicer

If applicable:

  • Use Relative Date slicer
  • Set to Last X Months

Automatically ensures full-month logic

Best Practice

For scenarios like yours, most implementations:

Avoid day-level slicers
Use Month/Year hierarchy slicers

This improves:

  • User experience
  • Performance
  • Data consistency

Hope this helps.

 

Thanks!

Inogic Professional Services: Power Platform/Dynamics 365 CRM
An expert technical extension for your techno-functional business needs
Service: https://www.inogic.com/services/
Tips and Tricks: https://www.inogic.com/blog/

View solution in original post

2 REPLIES 2
AmyD
Helper I
Helper I

Thanks very much 🙂

SamInogic
Solution Sage
Solution Sage

Hi,

 

Current Limitation

The Date Range Selector (custom visual) does not support restricting user selection to specific days like:

  • Only 1st of the month for From
  • Only end of month for To

This kind of constraint is not available out-of-the-box in that visual.

Recommended Workarounds

Option 1 – Use a Month-Level Slicer (Best Practice)

Instead of daily dates, create a Month column in your Date table:

YearMonth = FORMAT('DateTable'[Date], "YYYY-MM")

Then:

  • Use this field in a slicer
  • Change slicer type to Between or Dropdown

This ensures users select full months only

Option 2 – Use Start/End of Month Columns

Create helper columns:

StartOfMonth = STARTOFMONTH('DateTable'[Date])
EndOfMonth   = ENDOFMONTH('DateTable'[Date])

Use these fields in slicers so users naturally pick valid boundaries.

Option 3 – Enforce via Measure (Soft Restriction)

You can validate selection and show results only when valid:

Valid Selection =
IF(
    DAY(MIN('DateTable'[Date])) = 1 &&
    DAY(MAX('DateTable'[Date])) = DAY(EOMONTH(MAX('DateTable'[Date]),0)),
    1,
    0
)

Then:

  • Use this as a visual filter = 1
  • Or show a message like “Please select full months only”

Option 4 – Use Built-in Relative Date Slicer

If applicable:

  • Use Relative Date slicer
  • Set to Last X Months

Automatically ensures full-month logic

Best Practice

For scenarios like yours, most implementations:

Avoid day-level slicers
Use Month/Year hierarchy slicers

This improves:

  • User experience
  • Performance
  • Data consistency

Hope this helps.

 

Thanks!

Inogic Professional Services: Power Platform/Dynamics 365 CRM
An expert technical extension for your techno-functional business needs
Service: https://www.inogic.com/services/
Tips and Tricks: https://www.inogic.com/blog/

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

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.