stevensys Posted July 1, 2012 Posted July 1, 2012 Hi, Need help with some logic. e.g i have 4 cell and each cell able to insert a serial number. cell1, cell2, cell3, cell4. func cell1() $cell1= inputbox("user input cell1") if $cell1="cell1" then $serial1=inputbox ("user input serial1") if $cell1="skip" then goto cell2 () endif endif ... .. . ;this goes until $cell4() so, how do i make a condition to check all cell = cell1, cell2, cell3, cell4 if one of the array is SKIP, for example cell3="Skip" then condition here to send only $serial1, $serial2, $serial4 and paste to notepad something like that.
water Posted July 1, 2012 Posted July 1, 2012 If $cell1 = "SKIP" or $cell2 = "SKIP" or $cell3 = "SKIP" or $cell4 = "SKIP" Then ... My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
stevensys Posted July 1, 2012 Author Posted July 1, 2012 If $cell1 = "SKIP" or $cell2 = "SKIP" or $cell3 = "SKIP" or $cell4 = "SKIP" Then ...how do i send $serial without the skip?
water Posted July 1, 2012 Posted July 1, 2012 If $cell1 <> "SKIP" Then Send($Cell1)This is basic scripting. I would recommend to have a look at the WIki and read the beginners guide for AutoIt. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now