HI,
Here is what I recommend. and try to follow lol as I can get everywhere sometimes.
Let's say you have a List in SharePoint.
In there you have a mapping like this
For every choice they have in your form you have a row that is like
Org1, approver email, and anything else you need
Org Approver AnythingElse
When the form is submitted you do NOT use a Case, instead you do a Get Items from SharePoint, with a Filter on the Org Column where the value eq that choice from the Form it would be like this
Org eq 'DynamicPropertyOftheChoice' and yes you need the single quotes around it
So this is simply doing the Filtering you need to only get the first row if its Org1
Once you get these back, the Approver Column will be a Dynamic Property you can use :-) so its easy
And if you need more than one approver, than all you do is make the string semi colon concatentated like this
michael@t.com; t@t.com; etc@etc.com
Now, this returns back the Email to the Approver (or Approvers) and now you are Dynamically deciding who to send it to :-) without a hardcoded choice.
If this helps please mark as the answer.