VBA Noob, Thanks for the response. See bolded comments below.
Is the trigger a formula or a by the user changing A7. If it's a user change it works for me
-trigger is user-initiated. They will be selecting a 'string' from a drop down list in A7.
Try adding this to the start
and this to the end
-added these lines. still dont see any formula populating the cells.
Also is the formula a custom User defined function ??
If so it might be worth posting that code
The formula I want to ppulate the cell is a UDF. Its a simple Case statement function used to evaluate the contents of A7 See below.
Function quicknetwork(quick1 As String)
Select Case quick1
Case "Show All Network Space Available"
quicknetwork = "ALL"
Case "Show All Network Space Utilized"
quicknetwork = "ALL"
Case "Show ALL Space Available"
quicknetwork = "ALL"
Case "Show ALL space Utilized"
quicknetwork = "ALL"
Case "Custom"
quicknetwork = ""
Case Else
quicknetwork = "NONE"
End Select
End Function
Let me know if you have any other ideas, suggestions.
Bookmarks