Why do these return the same sum value? I thought .find was for total cell value and Cell Like "*5*" finds any cell with a 5 in it.
Code:
Set Psize = .Range(Header.Find("0.5" & ChrW(956)).Offset(rowi, 0), Cells(Header.Find("0.5" & ChrW(956)).Offset(rowi, 0).Row, LastColumn))
Cells(Header.Find("0.5" & ChrW(956)).Offset(rowi, 0).Row, LastColumn + 1).Value = Application.Sum(Psize)
Set Psize2 = .Range(Header.Find("5" & ChrW(956)).Offset(rowi, 0), Cells(Header.Find("5" & ChrW(956)).Offset(rowi, 0).Row, LastColumn))
Cells(Header.Find("5" & ChrW(956)).Offset(rowi, 0).Row, LastColumn + 2).Value = Application.Sum(Psize2)