Пікірлер
@OmniCode786
@OmniCode786 5 сағат бұрын
now we can just simply do df.to_excel("filename",index= 1/0)
@626games
@626games 5 сағат бұрын
Much appreciated
@ElmoPlayss
@ElmoPlayss 22 күн бұрын
13 minute video for 5 lines of code 💀
@Jess_TheAnalyst
@Jess_TheAnalyst 23 күн бұрын
Thank you sooo much!! My brain was hurting 😂. New subscriber!🎉
@dejifauji
@dejifauji Ай бұрын
great video
@vanessavalderrama1124
@vanessavalderrama1124 Ай бұрын
I can't seem to find the file, I already pasted it into the Backup folder :( I also checked the file permission and everything seems to be ok.
@AugustineBlessing-y8w
@AugustineBlessing-y8w Ай бұрын
It was really difficult for me to locate the file. Thank you so much for this.
@susannejoest566
@susannejoest566 Ай бұрын
the music is extremely annoying, regardless of the content, I had to close this video after a few seconds of that music
@raj345to
@raj345to Ай бұрын
what happened after downloading icon map??? how you got that icon in powerbi????
@AnshumanKUMAR-mh8qw
@AnshumanKUMAR-mh8qw Ай бұрын
Thank 🎉
@pedrorabelo2929
@pedrorabelo2929 Ай бұрын
Made it SIMPLE, at all !!
@SujalBiradar-n2o
@SujalBiradar-n2o 2 ай бұрын
Who has came frm aiml section
@bksswamy8491
@bksswamy8491 2 ай бұрын
Present sir😂
@nikhilreddy1250
@nikhilreddy1250 2 ай бұрын
Present😂
@yowaimo9199
@yowaimo9199 2 ай бұрын
Present 😅
@drelijahmikail3916
@drelijahmikail3916 2 ай бұрын
file > save copy in github?
@drelijahmikail3916
@drelijahmikail3916 2 ай бұрын
don't jump steps - how did you get to this interface? kzbin.info/www/bejne/i4nNqYqjr71reac This is the key part and how did you get there?
@050224011
@050224011 2 ай бұрын
Very clever - Thanks!
@charanpaidimarri6
@charanpaidimarri6 2 ай бұрын
Anything to be done from SQL db side if Power query is loading data very slow ?
@codemedio6418
@codemedio6418 3 ай бұрын
git repo please
@kareem_alhamwi
@kareem_alhamwi 3 ай бұрын
THANKS
@fadiwarth875
@fadiwarth875 3 ай бұрын
Thank you, that was great
@mustaphaelouahabi9316
@mustaphaelouahabi9316 3 ай бұрын
Bravo Sir! 👏 What a valuable mini-project using SQL! 🎉 Comments: 1. MySQL: No need to specify INNER word in MySQL syntax (i.e. JOIN means INNER JOIN) 2. Type of JOINS: In the real world; INNER JOIN & LEFT JOIN are the most frequently used types of joins 3. Data Cleansing: Handling missing data (i.e. NULLs) using COALESCE (Column_ name, a specified value) function is a MUST. Congrats sir for such informative SQL demo! 🎉🎉🎉🎉
@ElectronicBarta
@ElectronicBarta 3 ай бұрын
where you add scrollbar?
@shubhmahajan1167
@shubhmahajan1167 4 ай бұрын
Thank you bro very important Project
@shubhmahajan1167
@shubhmahajan1167 4 ай бұрын
bro you are using older modules like pdfFileReader. This moduile is not available in today's time. and if available then particular functionality isn't working
@shubhmahajan1167
@shubhmahajan1167 4 ай бұрын
Sir, email automation not working...
@alanbull4219
@alanbull4219 4 ай бұрын
Helpful video thanks. BUT get rid of the annoying and distracting music.
@danusranger
@danusranger 4 ай бұрын
using SUM() over partition was briliant, learnt something new today! thanks a lot man!
@jeff-creations
@jeff-creations 4 ай бұрын
Great video, thank you. I can't stand SSMS anymore - so NOT user friendly. VS Code is King!
@YOMESHCHOURISYA
@YOMESHCHOURISYA 4 ай бұрын
Thank you so much Brother
@mk6289l
@mk6289l 5 ай бұрын
It would be helpful if you demonstrated how to link to other files in the same repository from this notebook.
@yohainitzani1184
@yohainitzani1184 5 ай бұрын
The first two answers are incorrect and do NOT SHOW A RUNNING TOTAL IN ACCORDANCE TO ASCENDING MONTHS (just look at the answers). Since the Month field is a VARCHAR, you've ordered the running total alphabetically ('Apr' first month, 'Sep' last month). A solution as follows could be used to overcome that: SELECT *, SUM(Revenue) OVER (ORDER BY CASE WHEN Month= 'Jan' THEN 01 WHEN Month= 'Feb' THEN 02 WHEN Month= 'Mar' THEN 03 WHEN Month= 'Apr' THEN 04 WHEN Month= 'May' THEN 05 WHEN Month= 'Jun' THEN 06 WHEN Month= 'Jul' THEN 07 WHEN Month= 'Aug' THEN 08 WHEN Month= 'Sep' THEN 09 WHEN Month= 'Oct' THEN 10 WHEN Month= 'Nov' THEN 11 WHEN Month= 'Dec' THEN 12 END ASC) FROM Revenue
@yohainitzani1184
@yohainitzani1184 5 ай бұрын
DROP TABLE IF EXISTS Employee; CREATE TABLE Employee ( EmployeeID INT PRIMARY KEY, FirstName VARCHAR(50) NOT NULL, LastName VARCHAR(50) NOT NULL, HireDate DATE NOT NULL, Salary DECIMAL(10,2) NOT NULL ); INSERT INTO Employee (EmployeeID, FirstName, LastName, HireDate, Salary) VALUES (1, 'John', 'Smith', '2019-01-01', 75000), (2, 'Jane', 'Doc', '2019-02-15', 80000), (3, 'Bob', 'Johnson', '2019-03-30', 90000), (4, 'Sarah', 'Lee', '2019-04-15', 85000), (5, 'Mike', 'Brown', '2019-05-01', 95000), (6, 'Lisa', 'Davis', '2019-06-15', 100000), (7, 'Tom', 'Wilson', '2019-07-30', 110000), (8, 'Ann', 'Jones', '2019-08-15', 120000), (9, 'Peter', 'Parker', '2019-09-01', 125000), (10, 'Mary', 'Kim', '2019-10-15', 130000); DROP TABLE IF EXISTS Revenue; CREATE TABLE Revenue ( Year INT NOT NULL, Month VARCHAR(3) NOT NULL, Revenue DECIMAL(10,2) NOT NULL); INSERT INTO Revenue (Year, Month, Revenue) VALUES (2021, 'Jan', 50000), (2021, 'Feb', 75000), (2021, 'Mar', 90000), (2021, 'Apr', 65000), (2021, 'May', 80000), (2021, 'Jun', 95000), (2021, 'Jul', 110000), (2021, 'Aug', 120000), (2021, 'Sep', 100000), (2021, 'Oct', 90000), (2021, 'Νον', 75000), (2021, 'Dec', 60000);
@swatichauhan3802
@swatichauhan3802 5 ай бұрын
Great video, Big Help.. Thank you. Could you please provide the hex code for Background color and Green one too.
@joaomartins2431
@joaomartins2431 5 ай бұрын
Seu video me inspirou para fazer um dashboard
@kimlong6823
@kimlong6823 6 ай бұрын
not working with sql 2014 ?
@AlbertaMahu
@AlbertaMahu 6 ай бұрын
How do we do the same thing for the walking time?
@giovannibianchi9392
@giovannibianchi9392 6 ай бұрын
Nice trick, but it doesn't work when you have columns without data (i.e. sales for Aug/Sep/Oct/Noc/Dec when you are still in July) that are forced with "Show items with no data"
@ahmed007Jaber
@ahmed007Jaber 7 ай бұрын
thankk you for this. I was searching for this. now i need to do something else per row get the absolute varainace/sum( total absolute variance column) how would you do that?
@walterstevens8676
@walterstevens8676 7 ай бұрын
The demos of this look nice but I've tried it on UK geojsons and haven't get it working.
@TigistJemane
@TigistJemane 7 ай бұрын
Thank you so much for sharing your knowledge and experience.
@Skukkix23
@Skukkix23 7 ай бұрын
how to open a epxlorer window of a certain size in a certain location?
@Nico-dx4vg
@Nico-dx4vg 7 ай бұрын
so helpful thanks boss
@myfocustoprogress7228
@myfocustoprogress7228 7 ай бұрын
Pls continue
@pedr9vskcray2102
@pedr9vskcray2102 7 ай бұрын
your video helped me, thanks bro!
@machindranathalli2896
@machindranathalli2896 8 ай бұрын
I am in tension how to achieve total and subtotal in sql query. But this video make me free from tension. I believe everything is possible in sql. Thanks
@itsmitasha
@itsmitasha 8 ай бұрын
Has anyone tried this in 2024? I've tried to troubleshoot this for 30 mins and mine still isn't working >.< I think to do with google not allowing me to login using the SMTP? Thanks for any help.
@tinaflemons263
@tinaflemons263 8 ай бұрын
How can you make the table you added be more dynamic for all employees? Will this work on Groups?
@domenicoieracitano2138
@domenicoieracitano2138 8 ай бұрын
Sorry, but how did you manage to insert line breaks in text inside the buttons?
@reikben5956
@reikben5956 8 ай бұрын
Great Workaround. so simple. I have another challenge on advanced filtering and can't find a solution. I want to filter on certain phrases: e.g. "today is a great day" and "today is the best day". How can I filter on exactly these phrases if they're a part of a longer text block?
@AnupamBiswas-c8z
@AnupamBiswas-c8z 9 ай бұрын
Dear sir you show google sign up without phone number automation
@JessicaSchroeder-ws8wj
@JessicaSchroeder-ws8wj 9 ай бұрын
This was helpful and very well explained. Thank you for sharing this video.