I am unable to get the find function working in excel. Basically what I am trying to do is return the left portion of a cell until the string "/" is found.
I have attached a trial spreadsheet.![]()
Please Login or Register to view this content.
![]()
I am unable to get the find function working in excel. Basically what I am trying to do is return the left portion of a cell until the string "/" is found.
I have attached a trial spreadsheet.![]()
Please Login or Register to view this content.
![]()
the Find function is not a valid VBA function. You will need to use the Instr function. Look here for a quick tutorial and syntax explanation
http://www.techonthenet.com/excel/formulas/instr.php
Alan עַם יִשְׂרָאֵל חַי
Change an Ugly Report with Power Query
Database Normalization
Complete Guide to Power Query
Man's Mind Stretched to New Dimensions Never Returns to Its Original Form
Alternatively, you could use this syntax.
![]()
Please Login or Register to view this content.
The solution in your second post works but why does it require double quotes to work. Single quotes work with find in excel formula.
I would never have figured that one out.
I have tried unsuccessfully to get instr to work with left. Can you please show me what the syntax would be to make that work.
Hi,
Range("C2").Value = Left(Instr(A2),"/")
Re your 1st Q. The Excel formula Alan has given you, when entered directly in Excel itself contains a string literal, viz "/". When entered using VBA the whole formula is already encloses in its own "" literal quotes, hence any embedded quotes that are integral to an Exccel formula need to be further wrapped in their own quotes. Hence that's why you often see the ""sometext"" construction in VBA code that is adding a formula to the worksheet.
Richard Buttrey
RIP - d. 06/10/2022
If any of the responses have helped then please consider rating them by clicking the small star iconbelow the post.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks