Hi,
I was not sure what you mean by organization, we do not have such object in Kentico. If it is some custom object, you will need to create a Custom Macro Method to read it.
If you represent the organization using the Account object, you can read and filter them using its status in Macro. Here are some examples:
This macro will return true, if at least one of Contact Accounts is in status with codename "Partner":
{% OnlineMarketingContext.CurrentContact.Accounts.Filter("AccountStatus == \"Partner\"").Count > 0 |(identity)GlobalAdministrator%}
As you can see, these Macros work with OnlineMarketingContext.CurrentContact, so that you can test them on a Document first. When you pick one to be used in Marketing Automation Process, substitute OnlineMarketingContext.CurrentContact for just Contact.
Let me know if I can help you any further.