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
Sowjanya_1
Frequent Visitor

Issue with Date Filtering in Power BI Using JavaScript

I am facing an issue with date filtering in Power BI using JavaScript. My date column is formatted as "Saturday, April 10, 2021," which is not compatible with Power BI's expected format.

 

As a result, my attempts to filter the report using JavaScript are not yielding the desired results. I have tried several methods to convert the date to the correct format in my JavaScript code, but I still haven't been able to make it work.

Could you please assist me in converting the date from "Saturday, April 10, 2021" format to the format Power BI expects in JavaScript? I have attached a sample of my JavaScript code for your reference.

function convertDateFormat(longDate) {
                        const dateObj = new Date(longDate);
                        const year = dateObj.getFullYear();
                        const month = (dateObj.getMonth() + 1).toString().padStart(2, '0');
                        const day = dateObj.getDate().toString().padStart(2, '0');
                        return `${year}-${month}-${day}`;
                      }
                     
                      const startDate = 'Saturday, April 10, 2021';
                      const endDate = 'Saturday, March 5, 2022';
                      const convertedStartDate = convertDateFormat(startDate);
                      const convertedEndDate = convertDateFormat(endDate);
                     
                      console.log(convertedStartDate);
                      console.log(convertedEndDate);
                      console.log("filtering based on date range");
                     
                      const basicFilterForDateRange = {
                        $schema: "powerbi_url",
                        target: {
                          table: "my_table_name",
                          column: "Date"
                        },
                        operator: "Between",
                        values: [convertedStartDate,convertedEndDate],
                        filterType: models.FilterType.BasicFilter
                      };
0 REPLIES 0

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.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

60 days of Data Days Carousel

Data Days 2026

Join 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