Hi! need ur help, please!!
I have #N/A in B27:F36
i need a macro that will hide rows containing #N/A
plsss!!! thank u!!!!
Hi! need ur help, please!!
I have #N/A in B27:F36
i need a macro that will hide rows containing #N/A
plsss!!! thank u!!!!
Last edited by arkharova.s; 02-18-2014 at 04:18 AM.
Hi arkharova.s
try it
![]()
Sub test() On Error Resume Next Range("B27:F36").SpecialCells(xlCellTypeFormulas, xlErrors).EntireRow.Hidden = True End Sub
Or to just hide NA errors:
![]()
Sub foo() Dim c As Range Application.ScreenUpdating = False For Each c In Range("B27:F36") If WorksheetFunction.IsNA(c.Value) Then c.EntireRow.Hidden = True Next c Application.ScreenUpdating = True End Sub
let Source = #table({"Question","Thread", "User"},{{"Answered","Mark Solved", "Add Reputation"}}) in Source
If I give you Power Query (Get & Transform Data) code, and you don't know what to do with it, then CLICK HERE
Walking the tightrope between genius and eejit...
Duplicate post:
http://www.excelforum.com/excel-prog...ining-n-a.html
Dears!! thank you!! both options are working - great! thanks a lot!!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks