Can someone help me to figure out what is wrong with my code. I'm trying to multiply two declared ranges, Length and Width, and place the product on my CCFootagesS declared range.
I've attached a copy of my project. Thanks.
![]()
Public CCFootageS As Range Public Length As Range Public Width As Range Sub CCPublish() Set CCFootageS = Range("TPC[CCFootage-S]") Set Length = Range("TPC[Length]") Set Width = Range("TPC[Width]") CCFootagePS End Sub Sub CCFootagePS() CCFootageS = Length * Width End Sub
Bookmarks