Excel..condition based on drop down list
Closed
Kingleviathan
-
Sep 25, 2010 at 08:30 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Sep 25, 2010 at 09:04 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Sep 25, 2010 at 09:04 PM
Related:
- Excel..condition based on drop down list
- How to change your best friends list on snapchat to 3 - Guide
- Counter strike 1.6 cheats list - Guide
- All contact number list with name - Guide
- Amd crossfire compatibility list - Guide
- Liste déroulante excel anglais - Guide
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Sep 25, 2010 at 09:04 PM
Sep 25, 2010 at 09:04 PM
try these two macros
s is in the list of validation
one problem is will you remember which cell is hidden so that you can unhide it.
s is in the list of validation
one problem is will you remember which cell is hidden so that you can unhide it.
Sub hide_cell() If Selection.Value = "s" Then Selection.NumberFormat = ";;;" End If End Sub
Sub unhide_cell() Selection.NumberFormat = "general" End Sub