Pivot table + VBA
Closed
shockers
Posts
1
Registration date
Monday March 21, 2011
Status
Member
Last seen
March 21, 2011
-
Mar 21, 2011 at 12:22 AM
RWomanizer Posts 365 Registration date Monday February 7, 2011 Status Contributor Last seen September 30, 2013 - Mar 21, 2011 at 01:09 AM
RWomanizer Posts 365 Registration date Monday February 7, 2011 Status Contributor Last seen September 30, 2013 - Mar 21, 2011 at 01:09 AM
Related:
- Pivot table + VBA
- Vba case like - Guide
- School time table software free download full version - Download - Organisation and teamwork
- Pivot table date format mm/dd/yyyy - Guide
- Number to words in excel formula without vba - Guide
- How to delete part of a table in word - Guide
1 response
RWomanizer
Posts
365
Registration date
Monday February 7, 2011
Status
Contributor
Last seen
September 30, 2013
120
Mar 21, 2011 at 01:09 AM
Mar 21, 2011 at 01:09 AM
there is error in the line
If Target.Address <> "$C$24" Then Exit Sub
use
dim x as long
x = worksheets("worksheet name").range("c24")
If Target.address <> x then exit sub
and then
If Target.Address <> "$C$24" Then Exit Sub
use
dim x as long
x = worksheets("worksheet name").range("c24")
If Target.address <> x then exit sub
and then