Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
sibrulotte
Creator III
Creator III

MSGBOX (XXXX.GetContent.STRING)

Hi,

is there a reason why this wouldn't work?

SUB maxyear

  set bloc_user = ActiveDocument.Fields("BlocSecteurSponsorProjetPermis").GetPossibleValues

  msgbox (bloc_user.GetContent.string)

    

  End sub

I know the result. It's a single value actually. I just want to confirm this value but my macro is bugging.

1 Reply
swuehl
MVP
MVP

Try

SUB maxyear

  set bloc_user = ActiveDocument.Fields("BlocSecteurSponsorProjetPermis").GetPossibleValues

  msgbox (bloc_user.Item(0).Text)

   

End sub