Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to get total days of tx day in my table. When I write the below code, I get the error message for
"Expression.Error: 1 arguments were passed to a function which expects 3.
Details:
Pattern=
Arguments=[List]"
=List.Dates( #date("yyyy-mm-dd"), Duration.Days( Date.From( DateTime.LocalNow() ) -[#"Treatment Registrar Date#(lf)(please fill in date format: 1-Jan-2021)"]))
How can i solve for this.
Solved! Go to Solution.
the function of #date needs three parameters, such as #date(2023,10,1)
List.Dates needs a start date, end date, and interval.
---Nate
the function of #date needs three parameters, such as #date(2023,10,1)