Extracting first letter

RIZVI

Active Member
Joined
Jan 1, 2011
Messages
295
Office Version
  1. 2010
Platform
  1. Windows
Hi All,

I am using the following VBA to extract first letters from SKU list. All is fine except when couple of SKUs have matching starting letters, then I get duplicate results. Like say there are items like Chicken Crispy, Chicken Chilly then in both cases i get CC.

Is there a way that ONLY in such conflicing cases ,I get different results say like CCr and CCh instead of CC in both cases.

VBA that I m using is geiven below:

Function GetFirstLetters(rng As Range) As String
'Update 20140325
Dim arr
Dim I As Long
arr = VBA.Split(rng, " ")
If IsArray(arr) Then
For I = LBound(arr) To UBound(arr)
GetFirstLetters = GetFirstLetters & Left(arr(I), 1)
Next I
Else
GetFirstLetters = Left(arr, 1)
End If
End Function
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Thos function only extracts letters from one string. It doesn't know if you have others which may become duplicates.
And even if you add another letter you are still bound to have duplicates e.g. chicken chilly and chicken chunks. :)
Give it some more thinking and try to clarify exactly what you're trying to achieve.
 
Upvote 0
Thos function only extracts letters from one string. It doesn't know if you have others which may become duplicates.
And even if you add another letter you are still bound to have duplicates e.g. chicken chilly and chicken chunks. :)
Give it some more thinking and try to clarify exactly what you're trying to achieve.
Thanks for the response.

Currently SKUs with second letter also matchig is very few. If I can resolve the first letters duplicates, a major headache will be solved. In situations where second letter is also matchig I will have to manually change it or think of chaning the names of items so that second letter is not conflicting. As items with second letters matching are just few I think that will be OK.

RGDS,

Rizvi.M.H.
 
Upvote 0
The problem is that your current code is just a function - it just takes input and creates output. It does not look at any other data that you might have. It is very similar to most other native basic Excel functions.

To do what you want, you would need to make some substantial changes, possibly creating more functions and/or procedures to check for duplicates and decide what to do with them. You will probably need to add looping to handle those duplicates. In any event, it would require a bit more work.

If you do not have very many, it might be easier to simply use Conditional Formatting to highlight the duplicates, and then manually fix those.
 
Upvote 0
The problem is that your current code is just a function - it just takes input and creates output. It does not look at any other data that you might have. It is very similar to most other native basic Excel functions.

To do what you want, you would need to make some substantial changes, possibly creating more functions and/or procedures to check for duplicates and decide what to do with them. You will probably need to add looping to handle those duplicates. In any event, it would require a bit more work.

If you do not have very many, it might be easier to simply use Conditional Formatting to highlight the duplicates, and then manually fix th
 
Upvote 0
Currently I am doing same; using conditional formatting. I was hoping if someone can suggest a way by which at least first matching letters can be resolved.


RGDS,

Rizvi.M.H.
 
Upvote 0
Currently I am doing same; using conditional formatting. I was hoping if someone can suggest a way by which at least first matching letters can be resolved.


RGDS,

Rizvi.M.H.
It is possible, but it is by no means a trivial task.

How are you currently using your function? Are you using it right on the spreadsheet, or is it being called by other VBA code?

Can you post a small sample of data and what the formula is currently returning?
It would be helpful to see what columns/rows these two things reside in.
 
Upvote 0
It is possible, but it is by no means a trivial task.

How are you currently using your function? Are you using it right on the spreadsheet, or is it being called by other VBA code?

Can you post a small sample of data and what the formula is currently returning?
It would be helpful to see what columns/rows these two things reside in.
I am using right on spreadsheet.

RGDS,

Rizvi.M.H.
 

Attachments

  • Untitled.jpg
    Untitled.jpg
    56.4 KB · Views: 18
Upvote 0
I cannot think of a way to do what you want using the same format you are now, that would dynamically also consider all other entries with just that single function right on the sheet.
The way that I would do it would be to use VBA to populate column A. It would make use of your function, but also have to do checking of all other values too.

Before I go down that path, are you open to that kind of solution, where you will need to run a VBA procedure in order to populate column A?
 
Upvote 0
I cannot think of a way to do what you want using the same format you are now, that would dynamically also consider all other entries with just that single function right on the sheet.
The way that I would do it would be to use VBA to populate column A. It would make use of your function, but also have to do checking of all other values too.

Before I go down that path, are you open to that kind of solution, where you will need to run a VBA procedure in order to populate column A?
Of course I am open to it and look forward to the solution.

RGDS,

Rizvi.M.H.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top