Guest_imported
New member
- Jan 1, 1970
- 0
I have a marco that was created in Excel to update information within a workbook. The application is built in ACNielsen's product NITRO. The button/macro that updates the information states:
Dim bRC As Boolean
Dim acnNITRO As Object
Set acnNITRO = CreateObject("ACNielsenNITRO.ACNNitro"
Set acnNITRO.ParentApp = ActiveWorkbook.Application
Set acnNITROUpdt = acnNITRO.ACNNitroUpdate
bRC = acnNITROUpdt.UpdateAllNRanges(ActiveWorkbook, ntrRefresh)
I would like to write a similar macro that "Gets Data" for a specific range. What is the VBA terms saying in this code?
Thanks for you help
Dim bRC As Boolean
Dim acnNITRO As Object
Set acnNITRO = CreateObject("ACNielsenNITRO.ACNNitro"
Set acnNITRO.ParentApp = ActiveWorkbook.Application
Set acnNITROUpdt = acnNITRO.ACNNitroUpdate
bRC = acnNITROUpdt.UpdateAllNRanges(ActiveWorkbook, ntrRefresh)
I would like to write a similar macro that "Gets Data" for a specific range. What is the VBA terms saying in this code?
Thanks for you help