Re: Using Microsoft Graph for Onenote Pages in Combo Box
Hi @andrewhei ,
1)Is MicrosoftGraphConnector.GetPages a behavior formula?
If yes, please set this to one behavior property , save the returned table in a collection, the set the combo box' items to this collection.
Please notice that: combo box's Items property is not a behavior property, it needs a formula that will return a table.
For example: set the app's OnStart:
ClearCollect(collection1,MicrosoftGraphConnector.GetPages(...))
set the combo box's Items:
collection1
2)Please check whether this function returns blank table.
For example: set the app's OnStart:
ClearCollect(collection1,MicrosoftGraphConnector.GetPages(...))
use one label to check:
IsEmpty(collection)
If it display as true, then this function returns blank table.
In this situation ,please modify your custom connector's applications.
3)select correct primary text for your combo box
Since combo box will reset if you change its Items property, so sometimes you need to reinsert a combo box and set its Items, choose primary text.
Best regards,