Convert To VBA

PC User

New Member
Joined
Dec 11, 2012
Messages
32
I have a MS Excel formula in a cell that I'd like to convert to VBA in order to use in MS Access. Would one you experts be so kind as to convert this formula into a VBA function.
Code:
=LEN(SUBSTITUTE(C3, " ", ""))
Thank you so much.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Try:
Code:
ln = LEN(REPLACE([[I]SomeField[/I]]," ",""))
 
Upvote 0
Thanks for your reply. Alternative methods are always nice to have, but there must be a way to translate this into VBA function. For example, what is the VBA equivalent of "LEN()" and what is the VBA equivalent of "Substitute()"?

Gratefully yours
 
Last edited:
Upvote 0
Ok. I tried putting it into a function and it worked.

Code:
Function LPN(Text As String)    
     LPN = LEN(REPLACE(Text," ",""))
End Function
 
Last edited:
Upvote 0
Ok. I tried putting it into a function and it worked.
Glad to see you figured out I was giving you the VB answer you were looking for!
;)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,551
Messages
6,114,272
Members
448,558
Latest member
aivin

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