I am using VBA with Bloomberg's API, and I am trying to retrieve some bulk information. I need to add a couple of "override" fields to it, and the usual procedure in the manual doesn't work.
For example:
Set bOverrides = bRequest.GetElement("overrides")
Set bOverridesField = bOverrides.AppendElment()
bOverridesField.SetElement "DZ379", "DETAILED"
gives me the error "Invalid Procedure Call or Argument".
Anyone knows why?
Thanks!
You need to set the field you want to override and the value you want to override it with as two separate elements.