ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Faster Way of looping through cell values (https://www.excelbanter.com/excel-discussion-misc-queries/40128-faster-way-looping-through-cell-values.html)

Andibevan

Faster Way of looping through cell values
 
Hi All,

Is there a faster way of achieving the following loop:-

It checks through the range and ensures the last value in each cell is a
hard carriage return. It does not act on blank cells.

Sub add_hard_carriage()

Dim start_r As Integer, last_r As Integer

Dim const_Range As Range

Dim wsNM As Worksheet

Dim CurCell As Object 'As Range

Dim var_Chk As Integer



Set wsNM = Sheets("Project Log Form")



start_r = 9 'Start Row on data sheet

last_r = wsNM.Range("A65536").End(xlUp).Row 'last row



Set const_Range = wsNM.Range("T" & start_r & ":T" & last_r) 'Range

containing information

'Column A = Sheet, B = Range

'MsgBox (const_Range.Address)



For Each CurCell In const_Range

If CurCell.Value < "" Then



var_Chk = Asc(Right(CurCell, 1))

If var_Chk < 10 Then

CurCell.Value = CurCell.Value & Chr(10)

End If

End If



Next CurCell



End Sub





Andibevan

Apologies - inadvertantly posted in incorrect group.

"Andibevan" wrote in message
...
Hi All,

Is there a faster way of achieving the following loop:-

It checks through the range and ensures the last value in each cell is a
hard carriage return. It does not act on blank cells.

Sub add_hard_carriage()

Dim start_r As Integer, last_r As Integer

Dim const_Range As Range

Dim wsNM As Worksheet

Dim CurCell As Object 'As Range

Dim var_Chk As Integer



Set wsNM = Sheets("Project Log Form")



start_r = 9 'Start Row on data sheet

last_r = wsNM.Range("A65536").End(xlUp).Row 'last row



Set const_Range = wsNM.Range("T" & start_r & ":T" & last_r) 'Range

containing information

'Column A = Sheet, B = Range

'MsgBox (const_Range.Address)



For Each CurCell In const_Range

If CurCell.Value < "" Then



var_Chk = Asc(Right(CurCell, 1))

If var_Chk < 10 Then

CurCell.Value = CurCell.Value & Chr(10)

End If

End If



Next CurCell



End Sub








All times are GMT +1. The time now is 08:16 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com