Hi gurus,
I need help on how to include a checkbox into Excel and make a Msgbox appear saying "Hello" when it's ticked. That's not really what I need to do though, but I can find my own way from there.
This should be done using Powershell. Just to get started.
$missing = [System.Type]::missing
$excel = New-Object -Com Excel.Application
$wb = $excel.Workbooks.Add($missing)
$ws = $wb.Worksheets.Item(1)
########################################
# INSERT CHECKBOX HERE
# INSERT VBA CODE HERE
########################################
Thanks.