Good morning,
referencing to the article regarding section access with groups. https://community.qlik.com/t5/Official-Support-Articles/Troubleshooting-Section-Access-with-Groups-i...
In the example section access with group 'CN=ACCOUNTING,OU=FINANCE,DC=DOMAIN,DC=LOCAL' and the script is working.
Section Access;
LOAD * INLINE [
ACCESS, USERID, GROUP, COUNTRY
ADMIN, DOMAIN\ADMINISTRATOR,*,
USER ,*,ACCOUNTING, ENGLAND //This doesn't work
USER ,*,'CN=ACCOUNTING,OU=FINANCE,DC=DOMAIN,DC=LOCAL', FRANCE //This works
];
Section Application;
SalesData:
LOAD * INLINE [
COUNTRY, Sales
ENGLAND, 5000
FRANCE, 6000
];
I am trying to link to a group similar to your Group1, Group2 and this is not working, even these groups are in my profile.
User directory is Azure.

In my example i adjusted the upper script to my groups.
Section Access;
LOAD * INLINE [
ACCESS, USERID, GROUP, COUNTRY
ADMIN, AZURE\ADMIN*,
USER ,*, QLK_LHG_GRP_FLTOPS_EFF_CON , ENGLAND
USER ,*,QLK_LHG_GRP_FLTOPS, FRANCE
];
Section Application;
SalesData:
LOAD * INLINE [
COUNTRY, Sales
ENGLAND, 5000
FRANCE, 6000
];
Do you have an idea what i am doing wrong?
Thanks and best regards,
Peter