vba answers
Option Explicit
Function JoshFunc(r As Range)
Dim temp As Double
temp = WorksheetFunction.Sum(r)
JoshFunc = Evaluate("sqrt(" & temp & ")")
End Function
Function JoshFunc2(r As Range)
Dim theSum As Double
Dim cell As Range
For Each cell In r
theSum = theSum + cell.Value
Next cell
JoshFunc2 = Evaluate("sqrt(" & theSum & ")")
JoshFunc2 = theSum ^ 0.5
End Function
Sub Macro1()
For Each cell In Selection
If cell.Value >= 5 And cell.Value <= 50 Then
With cell.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 255
.TintAndShade = 0
.PatternTintAndShade = 0
End With
End If
Next cell
End Sub
No comments:
Post a Comment