UiPath Tutorial 03 - If Activity in UiPath | Find Leap Year using If Else Statement in UiPath

  Рет қаралды 42,152

Quality Assurance Lab

Quality Assurance Lab

4 жыл бұрын

Hi Guys!
This video explains -
How to use of If Statement in UiPath
How to work with If Else Statement in UiPath
How to add If Condition in UiPath
Demo on - How to find leap year in UiPath
Learning:
If there are one or more conditions in the project, and further steps needs execution based on the condition -True or False, in such case, go for If Activity in the project
Project -
1. Variable - Year (e.g. 2016, 2017 etc)
2. Condition - Check if the Year is a leap year or not
3. If the year is leap (Condition is true) - Display message - “The year is a leap year”
4. If the year is not leap (Condition is false) - Display message - “The year is not a leap year”
#uipathrpa #uipath #ifcondition #ifstatement
================================================================
JMeter Tutorial Playlist:
• JMeter Tutorial
Git and GitHub Tutorial Playlist:
• Git and GitHub Tutorial
Automation Anywhere Tutorial Playlist:
• Automation Anywhere A1...
UiPath Tutorial Playlist:
• UiPath Tutorial
Subscribe for more tutorials - / @qualityassurancelab7764

Пікірлер: 32
@qualityassurancelab7764
@qualityassurancelab7764 4 жыл бұрын
Hi Guy! Hope you found this video useful. Please like, share and subscribe to my channel. This will motivate me to create more good contents. Thanks!
@shahrukhahmad4127
@shahrukhahmad4127 2 жыл бұрын
Always showing execution error due to orchestral lost connection mam.... please tell me is it necessary to have an internet connection while running any program ? I don't have internet access every time. Could i run program without the internet ?
@VRR455
@VRR455 Жыл бұрын
Thank you Maam. I am now following your videos and preparing for the interview.
@sanjeevanrocks2515
@sanjeevanrocks2515 3 жыл бұрын
Very clear explanation mam..thanks a lot..
@avisheknath8180
@avisheknath8180 2 жыл бұрын
Very informative mam, explained really well
@basheerpatankhan
@basheerpatankhan 4 жыл бұрын
Nice Explanation Thanks for uploading uipath videos.. pls upload more videos.
@qualityassurancelab7764
@qualityassurancelab7764 4 жыл бұрын
Sure, will upload other videos soon, please let me know if you wish me to share videos on any specific topic
@santoshmore210
@santoshmore210 Жыл бұрын
nice Explaining..mam
@maheshembadi27
@maheshembadi27 2 жыл бұрын
Thanks!
@ramakrishnatirumala428
@ramakrishnatirumala428 3 жыл бұрын
please make a complete video from requirement gathering to deployment using RE framework
@athiravinod5125
@athiravinod5125 3 жыл бұрын
👍
@charanviswasi113
@charanviswasi113 2 жыл бұрын
Hi i started this uipath carrer and i have doubt " how can get month name in leap year wat is the condition that we can u use in rlpy for that "
@walterochieng4874
@walterochieng4874 2 жыл бұрын
Which version of UIpath was this i am trying to follow this but the interface is different with current one
@rajiv7
@rajiv7 4 жыл бұрын
Thank you, mam. Need to know how excel can be used here, i. e. Uipath will take year input from excel, process all rows and put data back to the same excel. Excel operations in Uipath - next topic please. Thanks in advance!!!
@qualityassurancelab7764
@qualityassurancelab7764 4 жыл бұрын
Hi Rajiv, Excel Operations is on the list, I will make publish the session soon. Thanks for sharing your views!
@rajiv7
@rajiv7 4 жыл бұрын
@@qualityassurancelab7764 thank you!!!
@maheshchinni8735
@maheshchinni8735 3 жыл бұрын
After input dialog came into picture what about the year variable 2015 as already you given
@qualityassurancelab7764
@qualityassurancelab7764 3 жыл бұрын
The default variable value 2015 will be replaced by the value you provide in input dialog
@aakankshabamniya7769
@aakankshabamniya7769 Жыл бұрын
could please provide some uipath project model tutorial ("prize prediction")
@-krithika
@-krithika 3 жыл бұрын
How to use leap year condition in Uipath , (y%4==0&&y%400=0&&y%100!=0) ...........this is the leap year condition right? can't we use this condition ........... if yes, how can we use ......please help me with syntax.
@akash9kh
@akash9kh 2 жыл бұрын
kzbin.info/www/bejne/a52lhWqni5d7lbs Krithika, you shall find it here, go through my video. Thanks
@ajaymishra9106
@ajaymishra9106 2 жыл бұрын
(Year mod 4 = 0 and Year mod 100 0) or (Year mod 400 =0) This is the proper condition for Leap Year!!!
@king_dhanush_kd_official_4642
@king_dhanush_kd_official_4642 Жыл бұрын
Brohh why we are using MOD .. Wht is that
@mominajadoon8569
@mominajadoon8569 9 ай бұрын
What is Mod 4 , pl explain
@veera567g3
@veera567g3 4 жыл бұрын
Hi, i have been connected you in Linkedin and posted the doubt there as well. My questions and doubt is about Here your program giving the result of LEAP YEAR or not from input of user. Now my point is the program should repeat continuously asking input from the user until a correct leap year number comes from the user. Here i want to connect the else box to the input dialog as per my condition. How to do ?
@qualityassurancelab7764
@qualityassurancelab7764 4 жыл бұрын
Hi, thanks for reaching out to me. State Machines are best suited for scenarios to take user input until user provides the correct one. Please checkout here - kzbin.info/www/bejne/eIfRZJiXbcqUqac and let me know for any further query.
@veera567g3
@veera567g3 4 жыл бұрын
@@qualityassurancelab7764 In state machine its taking lot of work compared to coding so i just want to make all those thing in one and or two activities or fewer activities than present we use activities
@qualityassurancelab7764
@qualityassurancelab7764 4 жыл бұрын
@@veera567g3 If you don't want to go with State Machine, please use DO While Activity. In the Body -> add Input Dialog and, in the Condition -> add - > Not Year Mod 4 = 0 This will continuously prompt the Input Dialog to the user to provide the Year Value, util the Year is a leap year
@veera567g3
@veera567g3 4 жыл бұрын
@@qualityassurancelab7764 thank you
@qualityassurancelab7764
@qualityassurancelab7764 4 жыл бұрын
@@veera567g3 You are welcome!
@kasiramsabbisetti4520
@kasiramsabbisetti4520 Жыл бұрын
without if condition we cannont perform prohram
@devipriyaskitchen9453
@devipriyaskitchen9453 Жыл бұрын
Hii
Heartwarming Unity at School Event #shorts
00:19
Fabiosa Stories
Рет қаралды 24 МЛН
Amazing weight loss transformation !! 😱😱
00:24
Tibo InShape
Рет қаралды 62 МЛН
Summer shower by Secret Vlog
00:17
Secret Vlog
Рет қаралды 13 МЛН
ПРОВЕРИЛ АРБУЗЫ #shorts
00:34
Паша Осадчий
Рет қаралды 7 МЛН
3 Types of Projects That Will Make You a Programmer
8:12
Andy Sterkowitz
Рет қаралды 1 МЛН
Retry Scope in UiPath | How to Use Retry Scope Activity in UiPath
12:27
Automate with Rakesh
Рет қаралды 31 М.
Announcing UiPath Autopilot
13:46
UiPath
Рет қаралды 9 М.
How to Use Variables in UiPath (The Basics for Beginners)
18:16
Anders Jensen
Рет қаралды 10 М.
Heartwarming Unity at School Event #shorts
00:19
Fabiosa Stories
Рет қаралды 24 МЛН