DAX - Time Intelligence - Power BI
26:52
DAX Weekend Training - Power BI
1:14
DAX - Logical Functions - Power BI
36:07
Пікірлер
@kokkondarakeshbabu
@kokkondarakeshbabu 5 сағат бұрын
Hi Abhi anvi. I have mailed you. can you please provide me DXL training notes & videos. so i can learn .
@swapnagotike392
@swapnagotike392 12 күн бұрын
Sir - for Salary question where should we find answer . If LCA salary is different than offer letter salary what should I mentioned. Please answer my question ASAP. My friend will get interview next week
@raffymcfee9846
@raffymcfee9846 12 күн бұрын
Thank you so much for this nonsense problem thank you! You really helped me
@pragatimishra-b4f
@pragatimishra-b4f 14 күн бұрын
hey u saved my day... thanks
@NarenderReddy-q8n
@NarenderReddy-q8n 23 күн бұрын
thank you
@Entertainment-nk8to
@Entertainment-nk8to 24 күн бұрын
on esmall correction Scribe is mamdatory in all review process except informal review
@tengkuaidatul9393
@tengkuaidatul9393 26 күн бұрын
concise and straight to the point, thanks!
@abhianvitutorials353
@abhianvitutorials353 Ай бұрын
import time from pywinauto import Desktop from pywinauto import Application import pyautogui def change_display_settings(size=None, resolution=None, orientation=None): pyautogui.press("win") time.sleep(1) pyautogui.typewrite("settings") time.sleep(3) pyautogui.press("enter") time.sleep(2) pyautogui.typewrite("change the resolution of the display") time.sleep(2) # pyautogui.click() # time.sleep(1) pyautogui.press("enter") time.sleep(1) pyautogui.press("enter") time.sleep(1) main_window = Desktop(backend="uia").window(title="Settings") # Setting resolution if main_window.ComboBox2.selected_text().find(resolution) != -1: pass else: for i in range(0, 10): time.sleep(2) main_window.ComboBox2.type_keys("%{DOWN}") time.sleep(1) try: main_window.ComboBox2.select(i) time.sleep(1) except Exception: pass time.sleep(2) pyautogui.hotkey('tab') time.sleep(1) pyautogui.press("enter") if main_window.ComboBox2.selected_text().find(resolution) != -1: break # Setting size if main_window.ComboBox1.selected_text().find(size) != -1: pass else: for i in range(0, 10): main_window.ComboBox1.type_keys("%{DOWN}") try: main_window.ComboBox1.select(i) time.sleep(2) except Exception: pass if main_window.ComboBox1.selected_text().find(size) != -1: break # Setting orientation if main_window.ComboBox3.selected_text().find(orientation) != -1: pass else: for i in range(0, 10): time.sleep(2) main_window.ComboBox3.type_keys("%{DOWN}") try: main_window.ComboBox3.select(i) time.sleep(2) except Exception: pass time.sleep(2) pyautogui.hotkey('tab') time.sleep(1) pyautogui.press("enter") if main_window.ComboBox3.selected_text().find(orientation) != -1: break change_display_settings("100", "1400", "Landscape")
@bharathsanthosh1373
@bharathsanthosh1373 Ай бұрын
🫂tnku
@SloppyNinja777
@SloppyNinja777 Ай бұрын
What if I want to remove values that are blank/null?
@HanhLe-ju6bs
@HanhLe-ju6bs Ай бұрын
I tried to apply same but it did not work for my data
@ibrahimm695
@ibrahimm695 Ай бұрын
Great Sir
@pratikbirari9508
@pratikbirari9508 2 ай бұрын
how to hide those are in bold but want to see rest others. Like want to hide 36,004.12 and show the values you hide in this video
@yashgarg4937
@yashgarg4937 2 ай бұрын
thnks bro
@evelic
@evelic 2 ай бұрын
Thanks. Silly thing from Power BI.
@ManojGupta-qr7ux
@ManojGupta-qr7ux 2 ай бұрын
Bro pls make a video on port of entry questions.
@saifulislam-xq9wh
@saifulislam-xq9wh 2 ай бұрын
please provide data source
@cloudyday9359
@cloudyday9359 3 ай бұрын
Is there a part 2 of this?
@harishkumarreddy7367
@harishkumarreddy7367 3 ай бұрын
Hi, I want a full course can you help me
@abhianvitutorials353
@abhianvitutorials353 3 ай бұрын
Email me at [email protected]
@mdhu3551
@mdhu3551 3 ай бұрын
Table.TransformColumns (#"Added Custom", { {"Custom", each if Number.IsNaN (_) then null else _, type number}})
@jayeshpercy9265
@jayeshpercy9265 3 ай бұрын
worst!
@user-lm5wb8vi1x
@user-lm5wb8vi1x 3 ай бұрын
Finished watching
@DmitriyGonchar
@DmitriyGonchar 3 ай бұрын
thanks a lot, you saved my day!
@subhakarpatnala4807
@subhakarpatnala4807 3 ай бұрын
I am listening that Delhi, Mumbai and Kolkata consulates closed for h1b interviews. We can schedule h1b interview only for hyderabad or chennai. Is this true?
@RichardOliver
@RichardOliver 4 ай бұрын
What are you adding? Text suddenly appears. This needs to be better explained, in my opinion.
@morganerickson439
@morganerickson439 4 ай бұрын
Thank you, thank you, THANK YOU!!
@jadegirlification
@jadegirlification 4 ай бұрын
Thanks for sharing. How about if a Name Column contains some duplicate values in each cell. Not all the cells have duplicate. E.g Cell 1: "JOHN A SMITH JOHN A SMITH JOHN A SMITH" Cell 2: "MARK TOM MARK TOM" Cell 3: "MARY RUTH JONES MARY RUTH JONES How can I split the column to only show: Cell 1: JOHN A SMITH, Cell 2: MARK TOM, Cell 3: MARY RUTH JONES? Thanks so much for your assistance.
@abhianvitutorials353
@abhianvitutorials353 4 ай бұрын
My code works if names are separated by a comma. In your case, need to think a new logic
@jadegirlification
@jadegirlification 4 ай бұрын
@@abhianvitutorials353Ok. Thanks so much
@abhianvitutorials353
@abhianvitutorials353 4 ай бұрын
In PQ go to menu Add column > custom column and past below function, replace column1 with the name of your column: Text.Combine(List.Distinct(Text.Split([Column1]," "))," ")
@sumitkumar89909
@sumitkumar89909 4 ай бұрын
where is solution ??
@mahiemaheswari5536
@mahiemaheswari5536 4 ай бұрын
Still not working
@SairamV17
@SairamV17 5 ай бұрын
I need to give the diff color code to column …. Is it possible?
@gowthamipm2350
@gowthamipm2350 5 ай бұрын
Hi sir, Good morning This is gowthami I have one question related to hide a column (measure ) from table visualization . That column I have used for sorting purpose I dnt want to showcase to users in table visualization and also after extraction also Plaese can you help me on that,it's very urgent requirement Thanks Gowthami
@abhianvitutorials353
@abhianvitutorials353 5 ай бұрын
send me data file and pbix file to [email protected]
@AkhandaVihari
@AkhandaVihari 5 ай бұрын
I heard hyd consulate is issuing 221g for most of the people, any reason for that?
@praveenvilla2134
@praveenvilla2134 5 ай бұрын
Me too get same information about this
@AkhandaVihari
@AkhandaVihari 5 ай бұрын
@@praveenvilla2134 any particular reason?
@suresha6210
@suresha6210 5 ай бұрын
Without knowing LCA how you attended interview Abhi thats basic document bro
@TwoLegendsandaPodcast-fz9gg
@TwoLegendsandaPodcast-fz9gg 5 ай бұрын
@5:19 you say -100 belongs in second category, but ">-100 and < 100" does not include -100, since >-100 starts at -99, then -98...never hitting -100, right?
@abhianvitutorials353
@abhianvitutorials353 5 ай бұрын
You are correct. -100 belongs to first class <= -100
@user-tk9wj1el3v
@user-tk9wj1el3v 5 ай бұрын
Do you provide any type of tutoring?
@abhianvitutorials353
@abhianvitutorials353 5 ай бұрын
Yes. Email me at [email protected]
@himeshkashyap1328
@himeshkashyap1328 5 ай бұрын
Hi Abhi, could you please let me know if you have any idea about recent H1B interviews in Hyderabad? If so, could you please share the experiences? I've heard that many candidates are receiving 221G.Do you have any idea why we are not getting appointments for OFC and the consulate in Mumbai and Delhi?
@sunilsachdeva620
@sunilsachdeva620 5 ай бұрын
Hi @himeshkashyap..what is the source of the information you mentioned many candidates are getting 221G?
@KanalGorski
@KanalGorski 5 ай бұрын
Hello, you helped me today. Thank you.
@abhishekpadhi6184
@abhishekpadhi6184 5 ай бұрын
Thank you so much :) Very well explained and nice selection of questions set.
@ckkim5373
@ckkim5373 5 ай бұрын
*Promo SM*
@sudhanshuvishodia
@sudhanshuvishodia 5 ай бұрын
Thanks buddy ! Been struggling with this from last couple of days, now I know why it was not working for me. :)
@abhianvitutorials353
@abhianvitutorials353 5 ай бұрын
Glad I could help
@feifeixing
@feifeixing 5 ай бұрын
How to hide the subtotal for that column then?
@abhianvitutorials353
@abhianvitutorials353 5 ай бұрын
Go to format button and switch off column sub totals
@BK_silent_eyes
@BK_silent_eyes 5 ай бұрын
Great video, But Sir is it possible to replace the value of a specific column of a single row if other rows have same value as the column I wanted to modify on a row?
@abhianvitutorials353
@abhianvitutorials353 5 ай бұрын
Yes. Absolutely. Because index is different for each row, you can delete specific row, eventhough other rows having same column value.
@BK_silent_eyes
@BK_silent_eyes 4 ай бұрын
@@abhianvitutorials353 Thank you
@vgriga9682
@vgriga9682 5 ай бұрын
Short and to the point! Thank you so much. You made my day!
@user-wh5um6th5y
@user-wh5um6th5y 5 ай бұрын
super bro
@SudipChakraborty-bu2xl
@SudipChakraborty-bu2xl 5 ай бұрын
Video is informative
@SudipChakraborty-bu2xl
@SudipChakraborty-bu2xl 5 ай бұрын
Hello Sir, I want to connect with you.
@SudipChakraborty-bu2xl
@SudipChakraborty-bu2xl 5 ай бұрын
Can I get your LinkedIn Profile? Please
@abhianvitutorials353
@abhianvitutorials353 5 ай бұрын
Email me at [email protected]
@nallagundlasrichandana5274
@nallagundlasrichandana5274 5 ай бұрын
Hi I want to contact you
@LavanyaM-lp2ij
@LavanyaM-lp2ij 6 ай бұрын
Which location
@abhianvitutorials353
@abhianvitutorials353 6 ай бұрын
Hyderabad
@lilythebroccoli
@lilythebroccoli 6 ай бұрын
thank you so much, i searched a lot of video by far this is the easiest to understand
@Mani_gpt088
@Mani_gpt088 6 ай бұрын
Hlo sir plzz reply can uh help me in my case stydy in powerbi
@ajaysuresh8856
@ajaysuresh8856 6 ай бұрын
Awesome Bro