hsandeep
Well-known Member
- Joined
- Dec 6, 2008
- Messages
- 1,226
- Office Version
- 2010
- Platform
- Windows
- Mobile
In Module of my Workbook (coded.xlsm) and for the Worksheet (tab named “ZZZ”) I am using User Defined Function to get outputs in some cells where UDFs are there.
1 line of the code is
Should I replace the above lines with?
Motto is
Thanks in advance
1 line of the code is
Rich (BB code):
If Sheets("ZZZ").Range("WA10").Value = "=1" Then
GoTo finish
End If
Should I replace the above lines with?
Rich (BB code):
If Application.Workbooks(“coded.xlsm”).Worksheets(“ZZZ").Cells(10, 599).Value = "=1" Then
GoTo finish
End If
Motto is
- speed of execution of the code & of course
- I don’t know whether the 2nd line/(s) would perform correctly or not?
Thanks in advance