Страницы: 1
RSS
Upper () в VBA
 
Всем, Привет!  
Никак не могу найти аналог функции Upper (ПРОПИСН) в VBA  
Application.WorksheetFunction  
Может кто знает?
 
{quote}{login=The_Prist}{date=18.08.2009 09:33}{thema=}{post}Range("A1") = "text"  
Range("A2") = UCase(Range("A1")){/post}{/quote}  
 
Спасибо!  
Не поверите, только что, тоже самое нашёл :-)  
For Each cell In Selection  
   st = UCase(cell.Value)  
   cell.Value = st  
Next cell
 
{quote}{login=The_Prist}{date=18.08.2009 09:40}{thema=}{post}For Each cell In Selection: cell = UCase(cell): Next cell{/post}{/quote}  
 
вау! гениально :-)
Страницы: 1
Читают тему
Наверх