VBA Script last cell/column with remove replace copy formatting

lefty38

Board Regular
Joined
Oct 27, 2005
Messages
85
Hello - this site has always been a great source of help
once again
i am looking for VB code that will select from cell H4 out to the last column/last cell
then with that selection perform two functions
find null values and replace with NR
copy the conditional formatting of H4 and paint brush to the last cell / column
excel version 2013
cells can contain null values
employee id will always have a value
again thank you




<tbody>
</tbody>







train 1train 2train 3train 4train 5train 6







ABC123ABC124ABC125ABC126ABC127ABC128
Divisiondatamore dataManagerEmployeeEmp IdPct CompPushPushQuestionPushPushQuestion
hrwestnorthFredemp11189.5%
NR
Complete
Complete
Complete
hrwest northwilmaemp21296.9%NR
Complete
CompleteComplete
hrcoastnorthbarneyemp31396.4%
Complete
CompleteComplete
hrwest northFredemp414100.0%
Complete
CompleteComplete
hrwest northwilmaemp515100.0%


CompleteComplete
hrwest northbarneyemp616100.0%


CompleteComplete
hrwest northFredemp71758.8%


Complete07/31/17

<tbody>
</tbody>
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Hope this helps.

Code:
Sub test()
    Dim rng As Range, c
    Set rng = Range(Range("H4"), Range("H4").SpecialCells(xlLastCell))
    For Each c In rng
        If c = "" Then
            c.Value = "NR"
        End If
    Next
    Range("H4").copy
    rng.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
End Sub
 
Upvote 0
Takea,
the code works well and does not go past the last column of data,
but for some reason on the row data it goes further than the last row that has data (8,000+ rows receive "NR" values)
is there a way to stop the script at the last row that has data in it?
 
Upvote 0
Sorry it was crude.
Assuming columnA does not have blank cell.

Code:
Sub test()
    Dim rng As Range, c
    Dim LR As Long, LC As Long
    LR = cells(Rows.count, 1).End(xlUp).Row
    LC = cells(1, Columns.count).End(xlToLeft).Column
    Set rng = Range(Range("H4"), cells(LR, LC))
    For Each c In rng
        If c = "" Then
            c.Value = "NR"
        End If
    Next
    Range("H4").copy
    rng.PasteSpecial Paste:=xlPasteFormats
End Sub
 
Upvote 0
a little bit fast?

Code:
Sub test()
    Dim rng, c
    Dim LR As Long, LC As Long, i As Long, j As Long
    Dim x
    LR = cells(Rows.count, 1).End(xlUp).Row
    LC = cells(1, Columns.count).End(xlToLeft).Column
    rng = Range(Range("H4"), cells(LR, LC))
    For i = 1 To LC - 7
        For j = 1 To LR - 3
            If rng(j, i) = "" Then
                rng(j, i) = "NR"
            End If
        Next
    Next
    Range(Range("H4"), cells(LR, LC)) = rng
    Range("H4").copy
    Range(Range("H4"), cells(LR, LC)).PasteSpecial Paste:=xlPasteFormats
End Sub
 
Last edited:
Upvote 0
Takae, my apologies,
I thought I replied on the results of your helpfulness
the script works 99%
but does not edit the last row & last column --the script selects (H2443) and column (AP:) but does not find "" & replace with the "NR"

(I have modified the starting point as (H6)

Any suggestions?
---------------------------------------------------------------------------------------------------

info in locals window
LR=2443 rows (long)
LC=42 columns (long)


Code:
[Sub RR_NR_Format()
    Dim rng, c
    Dim LR As Long, LC As Long, i As Long, j As Long
    Dim x
    LR = Cells(Rows.Count, 1).End(xlUp).Row
    LC = Cells(1, Columns.Count).End(xlToLeft).Column
    rng = Range(Range("H6"), Cells(LR, LC))
    For i = 1 To LC - 8
        For j = 1 To LR - 6
            If rng(j, i) = "" Then
               rng(j, i) = "NR"
            End If
        Next
    Next
    Range(Range("H6"), Cells(LR, LC)) = rng
    Range("H6").Copy
    Range(Range("H6"), Cells(LR, LC)).PasteSpecial Paste:=xlPasteFormats
End Sub/CODE]
 
Upvote 0
Here's another option
Code:
Sub test()

    Dim Rng As Range
    Dim UsdCols As Long
    Dim UsdRws As Long

    UsdRws = Cells.Find("*", LookIn:=xlFormulas, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    UsdCols = Cells.Find("*", LookIn:=xlFormulas, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column
    
    Set Rng = Range("H4", Cells(UsdRws, UsdCols))
    Rng.SpecialCells(xlBlanks).Value = "NR"
    Range("H4").Copy
    Rng.PasteSpecial Paste:=xlPasteFormats
End Sub
 
Upvote 0
Fluff & All
thank you the last script worked fine - until my data source changed to Access crosstab
Now the blank cells are not really blank cells - they have a hidden character in them

I can double click on each one, then run the code to work - but double clicking on each cell is impractical
if I do not do anything the code errors runt time error '1004' No cells were found

what do I need to change to find the hidden character and replace it with 'NR"?
Code:
Sub test()

    Dim Rng As Range
    Dim UsdCols As Long
    Dim UsdRws As Long

    UsdRws = Cells.Find("*", LookIn:=xlFormulas, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    UsdCols = Cells.Find("*", LookIn:=xlFormulas, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column
    
    Set Rng = Range("H4", Cells(UsdRws, UsdCols))
    Rng.SpecialCells(xlBlanks).Value = "NR"
    Range("H4").Copy
    Rng.PasteSpecial Paste:=xlPasteFormats
End Sub


and thank you for your replies
 
Upvote 0
Select one of the cells that contain the hidden character & run this
Code:
Sub chk()
MsgBox Asc(activecell)
End Sub
what does the msgbox say?
 
Upvote 0
thanks Fluff
I selected the cell - it returned the error
Run-time Error '5'
Invalid procedure call or argument

where this line was highlighted in yellow ==> MsgBox Asc(ActiveCell)
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,701
Members
448,980
Latest member
CarlosWin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top