Accessing RadiusCore from another Excel VBA project

To access RadiusCore from another Visual Basic for Applications project (i.e. .xlsm file), you first need to add RadiusCore as a reference to your VBA project.

  1. Ensure RadiusCore is installed and enabled on your system.

  2. Open Excel’s Visual Basic for Applications (shortcut ALT+F11).

  3. Select ‘Tools’ -> ‘References…’

    3_VBA_Tools

  4. Find RadiusCore in the Available References list. Select it using the checkbox and press OK.

    4_VBA_References

  5. In the Project Explorer, RadiusCore.xlam should be listed as a Reference.

    5_References_Xlam

You can now access RadiusCore via the CLI as follows:

Sub radius_Sample()
    RadiusCore.Refresh All:=True
End Sub