Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi to all! I donīt understand at all the role of char(30) in the formula =RIGHT(F2;LEN(F2)-FIND(CHAR(30);SUBSTITUTE(F2;".";CHAR(30);LEN(F2)-LEN(SUBSTITUTE(F2;".";""))))) Char(30) is record separator, but in a string (e.g. 1 Prelude.mp3) ![]() What does it mean? -- omikron123 ------------------------------------------------------------------------ omikron123's Profile: http://www.excelforum.com/member.php...o&userid=30478 View this thread: http://www.excelforum.com/showthread...hreadid=501372 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It's a placeholder that is presumably not likely to be found in the
string in F2. The outside SUBSTITUTE() function replaces the last "." character in F2 with CHAR(30). That character is then used by FIND() to locate where the last "." is. One could save a function call using =MID(F2; FIND(CHAR(30); SUBSTITUTE(F2;".";CHAR(30); LEN(F2)-LEN(SUBSTITUTE(F2;".";""))))+1;255) In article , omikron123 wrote: I donīt understand at all the role of char(30) in the formula =RIGHT(F2;LEN(F2)-FIND(CHAR(30);SUBSTITUTE(F2;".";CHAR(30);LEN(F2)-LEN(SUBSTIT UTE(F2;".";""))))) Char(30) is record separator, but in a string (e.g. 1 Prelude.mp3) ![]() What does it mean? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thank you very much.:) :) :) JE McGimpsey Wrote: It's a placeholder that is presumably not likely to be found in the string in F2. The outside SUBSTITUTE() function replaces the last "." character in F2 with CHAR(30). That character is then used by FIND() to locate where the last "." is. One could save a function call using =MID(F2; FIND(CHAR(30); SUBSTITUTE(F2;".";CHAR(30); LEN(F2)-LEN(SUBSTITUTE(F2;".";""))))+1;255) In article , omikron123 wrote: I donīt understand at all the role of char(30) in the formula =RIGHT(F2;LEN(F2)-FIND(CHAR(30);SUBSTITUTE(F2;".";CHAR(30);LEN(F2)-LEN(SUBSTIT UTE(F2;".";""))))) Char(30) is record separator, but in a string (e.g. 1 Prelude.mp3) ![]() What does it mean? -- omikron123 ------------------------------------------------------------------------ omikron123's Profile: http://www.excelforum.com/member.php...o&userid=30478 View this thread: http://www.excelforum.com/showthread...hreadid=501372 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
FIND 1 char in cell of any 3 char =True | Excel Discussion (Misc queries) | |||
8500 cells with phone number(7 char.), wishing to add area code (10 char.) | Excel Discussion (Misc queries) | |||
Problem in compiling code containing "$" char | Excel Programming | |||
XLL - VS .Net2003 - init problem - const char strings - /Gf option?? | Excel Programming | |||
XLL - VS .Net2003 - init problem - const char strings - /Gf option?? | Excel Programming |