Smitty
Legend
- Joined
- May 15, 2003
- Messages
- 29,536
Like CBrine says: "A cheap shot is a terrible thing to waste!"or maybe not.....
Smitty
Like CBrine says: "A cheap shot is a terrible thing to waste!"or maybe not.....
Sorta. I took tips from Walkenbach's Excel Charts book and mixed them with a couple of separate chart ideas from Jon Peltier's site, and made a humdinger of a chart (sort of a histogram + waterfall + three-charts-in-one kind of thing) which I thought did a *******jack job of explaining the data succinctly. Only to have my boss tell me he preferred the simple plain-vanilla stacked-column chart that I'd tossed together in 30 seconds as a backup. The "glass-half-full" POV would be that I did learn something new!NateO said:...the 'Jerry Maguire'...
Greg Truby said:...when you see this...<font face=Courier New>
<SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> Worksheet_Change(<SPAN style="color:#00007F">ByVal</SPAN> Target <SPAN style="color:#00007F">As</SPAN> Range)
<SPAN style="color:#00007F">If</SPAN> Target = 7 <SPAN style="color:#00007F">Then</SPAN> Target = 4
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>
</FONT>
and the first thing that pops into your head is "he forgot to toggle Application.EnableEvents off and back on" instead of "oh, that would be funny".
...when you see this...
Private Sub Worksheet_Change(ByVal Target As Range)
If Target = 7 Then Target = 4
End Sub
and the first thing that pops into your head is "he forgot to toggle Application.EnableEvents off and back on" instead of "oh, that would be funny".
Floating point error?Tazguy37 said:I was curious how that number rounds to 1.1 million, actually.