I have really enjoyed your style of teaching. You are really a master of breaking it down and making it look easy. Thank you for your content. I have learned more in a day of watching your videos then I have in weeks, struggling to learn all that is possible with Power Query. Your explanation of the difference between Excel Power Query and Power BI.... was priceless.... I now know exactly what Power Query in Excel is... Power Pivot etc... Thank you. I am going to sign up for your class on the M language.
Hai Goodly , I have an issue In power query editor date column is in format dd-mm-yyyy But I created in the format of yyyy-mm-dd Using Text.From(Date.Year([loaddate])) & "-" & Text.From(Date.Month([loaddate])) & "-" & Text.From(Date.Day([loaddate])) The output is come in yyyy-mm-dd But I am trying to convert into date data type This custom column values also changing into dd-mm-yyyy What should I do now ... I tried many ways ... Kindly help
Great video as always - My issue with dates is : I frequently get an issue with dates in that when the data is loaded to excel, they revert to numbers in the spreadsheet. This is even though the data type is set to date in PQ. Fixed by changing the formatting of the cells in Excel to date , but a data refresh brings back the issue, requiring re-formatting Why does this happen and how can it be fixed ?- many thanks
Рік тому
The same issue here. This is a crazy behavior when you process this date values in VBA. Filters created by code doesn't work. Did you find any solution in past months?
Hi is there a formula or PQ way to change any transactions time that come between 12:00:00 AM and 7:59:59 AM To be 8:00:00 AM which is the start of working hour.
Hi Chandeep, thank you for your video but in my case, it did not help me. Could you help me with this issue. I have a data import from hundreds of CVS files, and they all look the same. The date does not come as a real date. I am getting for example in the Date Row 45371.49955 and I cannot get that converted to a Date. I checked that in excel and easily got a DateTime --> 20.03.2024 11:59:21
Hi Chandeep, I watched some of your videos and all are great. I want to ask my dax issue but it is not related to your topic. Can you tell me what's wrong why I get correct data on 8 but not on 7? Tickets for 7 days = CALCULATE(COUNTA('Tickets'[Ticket ID]) , FILTER (('Tickets', 'Last Refresh'[Date.Last Refreshed] - 'Tickets' [Created])
The final method, no doubt, looks nice since everything is done in a single step. But it does beg the question: is there a purely technical basis for calling it "better" than doing the transformation using multiple steps? I.e., Could one, perhaps, to measure the speed (or maybe there is a better metric) of "one step" code vs code in several PQ steps? just curious...
Can we solve a problem where a couple of dates are in Indian format and couple are in American format in the same column and I want only the dates in American format to be converted to Indian Format, Please guide
Hi! I have a question from example 2. How to do it in DAX? I have month (April) and year(2022), how to make from these 2 columns column date(2022-04-01)?
Create a new column, something like this Date Column = DATEVALUE ( "1-" & Table[MonthName] & "-" & Table[Year] ) The order of concatenation - DD-MM or MM-DD will depend on your local PC settings. But this should work
Check out our newly launched M Language course ↗ - goodly.co.in/learn-m-powerquery/
I have really enjoyed your style of teaching. You are really a master of breaking it down and making it look easy. Thank you for your content. I have learned more in a day of watching your videos then I have in weeks, struggling to learn all that is possible with Power Query. Your explanation of the difference between Excel Power Query and Power BI.... was priceless.... I now know exactly what Power Query in Excel is... Power Pivot etc... Thank you. I am going to sign up for your class on the M language.
looking forward to seeing you in the course 🙏🏼🙏🏼😀😀
Hai Goodly ,
I have an issue
In power query editor date column is in format dd-mm-yyyy
But I created in the format of yyyy-mm-dd
Using
Text.From(Date.Year([loaddate])) & "-" & Text.From(Date.Month([loaddate])) & "-" & Text.From(Date.Day([loaddate]))
The output is come in yyyy-mm-dd
But I am trying to convert into date data type
This custom column values also changing into dd-mm-yyyy
What should I do now ...
I tried many ways ...
Kindly help
Very nice! That second trick was quite surprising to me - never would have thought that it would work.
Great video! :-)
Hi Chandeep. Great date tips for Power Query! Love it when you wrap it all up in one statement. Thanks for demonstrating. Thumbs up!!
Thank you for detailed explanation, Chandeep!
Great video as always - My issue with dates is :
I frequently get an issue with dates in that when the data is loaded to excel, they revert to numbers in the spreadsheet. This is even though the data type is set to date in PQ. Fixed by changing the formatting of the cells in Excel to date , but a data refresh brings back the issue, requiring re-formatting
Why does this happen and how can it be fixed ?- many thanks
The same issue here. This is a crazy behavior when you process this date values in VBA. Filters created by code doesn't work.
Did you find any solution in past months?
Thank you very much, sir, I'm struggling with this concept often .. but the last trick is so cool .. will help a lot in my future assignment.
Man, what a great video, I was trying it for 30 min haha, you helped me a lot!
Glad it helped!
You saved my day with the second trick, thanks a lot
Glad it was useful Hasna!
Thank you very much for sharing, Greetings from Chile.
The last solution was WACKY, man!!! Congratulations on your videos! 💥🦾👊👏👏👏💯🔝
Glad you like it! 💚💚
Hi Chandeep,
Could you please advise how to treat null values in the date column?
Amazing way of teaching
Great video! How did you get the Month from 1 digit to 2 digits? like 1 to 01 ?
Great Tips- thanks for sharing.
That video is brilliant!
Glad to hear that!
Hi is there a formula or PQ way to change any transactions time that come between 12:00:00 AM and 7:59:59 AM To be 8:00:00 AM which is the start of working hour.
Hi Chandeep, thank you for your video but in my case, it did not help me. Could you help me with this issue. I have a data import from hundreds of CVS files, and they all look the same. The date does not come as a real date. I am getting for example in the Date Row 45371.49955 and I cannot get that converted to a Date. I checked that in excel and easily got a DateTime --> 20.03.2024 11:59:21
Hi Chandeep,
I watched some of your videos and all are great. I want to ask my dax issue but it is not related to your topic.
Can you tell me what's wrong why I get correct data on 8 but not on 7?
Tickets for 7 days = CALCULATE(COUNTA('Tickets'[Ticket ID]) , FILTER (('Tickets', 'Last Refresh'[Date.Last Refreshed] - 'Tickets' [Created])
The final method, no doubt, looks nice since everything is done in a single step. But it does beg the question: is there a purely technical basis for calling it "better" than doing the transformation using multiple steps? I.e., Could one, perhaps, to measure the speed (or maybe there is a better metric) of "one step" code vs code in several PQ steps? just curious...
Can we solve a problem where a couple of dates are in Indian format and couple are in American format in the same column and I want only the dates in American format to be converted to Indian Format, Please guide
Very helpful
Great date tips
💚
You are awesome!!! Thanks a lot.
Glad you think so!
Usefull, love U
Great Tips
Hi!
I have a question from example 2. How to do it in DAX?
I have month (April) and year(2022), how to make from these 2 columns column date(2022-04-01)?
Create a new column, something like this
Date Column = DATEVALUE ( "1-" & Table[MonthName] & "-" & Table[Year] )
The order of concatenation - DD-MM or MM-DD will depend on your local PC settings. But this should work
Amazing
🙏 it's amezing support
How would you get the date from
Year and Week of the Year
in Power Query?
Hi Sir
How can we add extra day for already in date column
You mean date + 1?
If yes you can use the formula =Date.AddDays([Date] + 1)
How do we change minimum target value after every 3 months in power query and Power BI?
I have a start date and end date. I want to create a list of month start dates between the from and to dates.
ua-cam.com/video/tnjzIq7jinQ/v-deo.html
Dear bro,
I need to second last max date with multiple criteria in power query
How to create M function
How to convert month name to month number
Create a new column in power query and use this code
= Date.Month ( Date.From ( [MonthNameColumn] & "2020" ) )
Hi Chandeep, nice video indeed. But what I need is to how to get yyyy-mm and mmm-yyyy out from the date.
Can you please kindly help with that?
So usefull
Glad it was useful!