Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim c as range
for each in range("U9:DA9")
with c
if .value <> .formula then
.copy
range(cells(1, .column), cells(cells.rows.count, .column)).pastespecial xlPasteFormulas
end if
end with
next
Dim c As Range
For Each c In Range("U9:DA9")
With c
If .Value <> .Formula Then
.Copy
Range(Cells(1, .Column), Cells(Cells.Rows.Count, .Column)).PasteSpecial xlPasteFormulas
End If
End With
Next
Public Function CopyColumns()
NumOfRows, NumOfCol as long
Dim c As Range
NumOfRows = CountRows()
NumOfRows = NumOfRows + 9
Windows("wfjrpla.xls").Close
Set ColRng = Sheets("results").Range("A9:DA9")
NumOfCol = ColRng.Columns.Count
For Each c In Range("U9:DA9")
With c
If .Value <> .Formula Then
.Copy
Range(Cells(9, .Column), Cells(NumOfRows, .Column)).PasteSpecial xlPasteFormulas
End If
End With
Next
End Function
[blue]If [red]CStr([/red].Value[red])[/red] <> .Formula Then[/blue]
With c
If .Value <> .Formula Then
With c
If .hasformula = true Then