![]() |
Condensing VBA code
Can the following code be reduced?
Application.Proper(Cells(cell.Row, "C").Value) & " " & Application.Proper(Cells(cell.Row, "B").Value) |
Condensing VBA code
Application.Proper(Cells(cell.Row, "C").Value & " " & Cells(cell.Row, "B").Value)
-- HTH, Bernie MS Excel MVP "Brad" wrote in message ... Can the following code be reduced? Application.Proper(Cells(cell.Row, "C").Value) & " " & Application.Proper(Cells(cell.Row, "B").Value) |
Condensing VBA code
Thank you
I didn't know if you could somehow have Application.Proper(Cells(cell.row, "C"&" "&"B").Value "Bernie Deitrick" wrote: Application.Proper(Cells(cell.Row, "C").Value & " " & Cells(cell.Row, "B").Value) -- HTH, Bernie MS Excel MVP "Brad" wrote in message ... Can the following code be reduced? Application.Proper(Cells(cell.Row, "C").Value) & " " & Application.Proper(Cells(cell.Row, "B").Value) |
Condensing VBA code
You're welcome.
But you cannot do what you describe - you need to process the multiple values separately... HTH, Bernie MS Excel MVP Thank you I didn't know if you could somehow have Application.Proper(Cells(cell.row, "C"&" "&"B").Value |
All times are GMT +1. The time now is 06:54 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com