Mar 24, 2006 #1 vamoose Programmer Oct 16, 2005 320 MX Trying to do the following in Excel 2000 VBA: Sheet11.Range("J3").ClearContents But J3, K3 and L3 are merged cells. Thanks
Trying to do the following in Excel 2000 VBA: Sheet11.Range("J3").ClearContents But J3, K3 and L3 are merged cells. Thanks
Mar 24, 2006 1 #2 PHV MIS Nov 8, 2002 53,708 FR Have you tried this ? Sheet11.Range("J3:L3").ClearContents Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
Have you tried this ? Sheet11.Range("J3:L3").ClearContents Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Mar 24, 2006 1 #3 GlennUK MIS Apr 8, 2002 2,937 GB Here you are: Code: Sheet11.Range("J3:L3").ClearContents Cheers, Glenn. Did you hear about the literalist show-jumper? He broke his nose jumping against the clock. Upvote 0 Downvote
Here you are: Code: Sheet11.Range("J3:L3").ClearContents Cheers, Glenn. Did you hear about the literalist show-jumper? He broke his nose jumping against the clock.