I'm trying to learn how to post code etc before I use this site and not having any luck. I tried to download MREXCEL HTML Maker but do not have Addin folder? (that's a question i don't know how to answer). Testing post of code below seems ok but would like to show output from excel table. Any suggestions on how to show table data (and the functions within - control~) would be appreciated, Thank you in advance.
Code:
For Each NumRange In Columns (“C”).SpecialCells(xlConstants, slNumbers).Areas
SumAddr = NumRange.Address(False)
NumRange.Offset(NumRange.Count, 0).Resize(1,1).Formula = “=SUM(“ & SumAddr & “)”
c = NumRange.Count
Next NumRange