Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
why is it when i use this:
Function cvText(cllText As String) For i = 1 To Len(cllText) cvText = Mid(cllText, i, 1) Next End Function .... and test it.. Print cvText("hello") o I get "o" but if I use Function cvText(cllText As String) For i = 1 To Len(cllText) cvText = Right(clltext,i) Next End Function i get: Print cvText("hello") hello i get "hello" i want to be able to loop through each character using mid(clltext,i,1) to test if there is a blank. the goal is to create a function that ucase's the beginning of each letter of a word thanks. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IF statement inside a SUMIF statement.... or alternative method | Excel Worksheet Functions | |||
Reconcile Bank statement & Credit card statement & accounting data | Excel Worksheet Functions | |||
Embedding an OR statement in an IF statement efficiently | Excel Discussion (Misc queries) | |||
Sum if statement with a left statement | Excel Discussion (Misc queries) | |||
appending and IF statement to an existing IF statement | Excel Worksheet Functions |