I need to create a button that will do the following, depending on a simple formula:
A. if FALSE: Copy the value of a cell to the clipboard
B. if TRUE: Copy the value of a cell to the clipboard AND open a URL in the default browser window

This will need to work on Excel on a PC or Mac

I was able to copy to clipboard using this VBA:
Sub RectangleRoundedCorners2_Click()
Range("C16:D16").Copy
End Sub

Please help!