Go to special
Closed
Viking57
-
Jul 16, 2010 at 11:59 AM
aquarelle Posts 7140 Registration date Saturday April 7, 2007 Status Moderator Last seen March 25, 2024 - Jul 23, 2010 at 01:51 AM
aquarelle Posts 7140 Registration date Saturday April 7, 2007 Status Moderator Last seen March 25, 2024 - Jul 23, 2010 at 01:51 AM
Related:
- Go to special
- Special character letter - Guide
- How to type special e - Guide
- Spotify special progress bar - Guide
- Special characters in word - Guide
- Stronghold crusader 2 special edition cheats - Guide
3 responses
aquarelle
Posts
7140
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
March 25, 2024
491
Jul 16, 2010 at 03:06 PM
Jul 16, 2010 at 03:06 PM
Hi,
Try this :
Best regards
"Pour trouver une solution à ses problèmes, il faut s'en donner la peine."
Try this :
Sub HidingEmptyRows() Dim p As Range, i As Long Set p = Application.InputBox(Prompt:="Select a range of cells", _ Title:=" Hiding of empty rows", Type:=8) With p For i = .Rows.Count To 1 Step -1 If Application.CountA(.Rows(i)) = 0 Then _ .Rows(i).EntireRow.Hidden = True Next i End With End Sub
Best regards
"Pour trouver une solution à ses problèmes, il faut s'en donner la peine."
aquarelle
Posts
7140
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
March 25, 2024
491
Jul 16, 2010 at 04:20 PM
Jul 16, 2010 at 04:20 PM
Yes, because I made a mistake but I edited my message to modify my macro and now I think it is OK :)
aquarelle
Posts
7140
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
March 25, 2024
491
Jul 17, 2010 at 02:16 PM
Jul 17, 2010 at 02:16 PM
Hi,
Sorry , I had forgotten the possibility to have cells= 0, try this new one :
Best regards
"Pour trouver une solution à ses problèmes, il faut s'en donner la peine."
Sorry , I had forgotten the possibility to have cells= 0, try this new one :
Sub HidingEmptyRows() Dim p As Range, i As Long Set p = Application.InputBox(Prompt:="Select a range of cells", _ Title:=" Hiding of empty rows", Type:=8) With p For i = .Rows.Count To 1 Step -1 If Application.CountIf(.Rows(i), "=0") > 0 Or _ Application.CountIf(.Rows(i), "*") = 0 Then _ .Rows(i).EntireRow.Hidden = True Next i End With End Sub
Best regards
"Pour trouver une solution à ses problèmes, il faut s'en donner la peine."
aquarelle
Posts
7140
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
March 25, 2024
491
Jul 23, 2010 at 01:51 AM
Jul 23, 2010 at 01:51 AM
Hi,
Please could you load a brief example of your excel file (without any private or personal data) on https://authentification.site then copy past the created link to your next answer.
See you
Please could you load a brief example of your excel file (without any private or personal data) on https://authentification.site then copy past the created link to your next answer.
See you
Jul 16, 2010 at 02:18 PM