It looks like Pending is a linked record? If so, you can just use the Count field type on the table with Subscription status.
If it's a single select field, you can use a rollup on another table that is CONDITIONAL on Field = Pending.
I'm not sure if I'm understanding how your base is set up,
It looks like Pending is a linked record? If so, you can just use the Count field type on the table with Subscription status.
If it's a single select field, you can use a rollup on another table that is CONDITIONAL on Field = Pending.
I'm not sure if I'm understanding how your base is set up,
Hi MLO, many thanks for your response.
You are correct, the multi select 'Status' field has been linked to an Activations Summary table (see attached).
I've realised that the 'Pending' multi select option is confusing and not very useful so I am planning to remove this and just set nominated customer subscribers as either 'activated' or 'deactivated' .
What I'm trying to achieve within the linked Activations Summary table is a calculation that states: 'of the total subscriptions sold ('#subs' in Subscriptions Table), how many are 'pending' (or yet to be activated?). Is there a rollup and formula combination I can insert into the Activations Summary table to achieve this?
Something like: Total #subs (minus) _Activated (minus) Deactivated/Cancelled ?
Hi MLO, many thanks for your response.
You are correct, the multi select 'Status' field has been linked to an Activations Summary table (see attached).
I've realised that the 'Pending' multi select option is confusing and not very useful so I am planning to remove this and just set nominated customer subscribers as either 'activated' or 'deactivated' .
What I'm trying to achieve within the linked Activations Summary table is a calculation that states: 'of the total subscriptions sold ('#subs' in Subscriptions Table), how many are 'pending' (or yet to be activated?). Is there a rollup and formula combination I can insert into the Activations Summary table to achieve this?
Something like: Total #subs (minus) _Activated (minus) Deactivated/Cancelled ?
If I'm understanding your set-up and question correctly (which I'm not sure I am), you should be able to simply use a Count field type and then use the "condition" toggle option:

I think the part I'm confused about is this: some of the records that are linked to "Activated" are not truly activated? What distinguishes them from a regular activated record?
If I'm understanding your set-up and question correctly (which I'm not sure I am), you should be able to simply use a Count field type and then use the "condition" toggle option:

I think the part I'm confused about is this: some of the records that are linked to "Activated" are not truly activated? What distinguishes them from a regular activated record?
Hi MLO,
Records marked "Activated" are individual subscribers that have had their subscriptions activated against their Orgs total contract subscription purchase. Nominated subscribers are often not known at time of contract sale and are therefore activated incrementally across the contract period, hence why the #subs doesn't align with number of records for each Org (e.g. Org 1 in attached image purchased 6 subs, but only 3 subscribers have been submitted for subscription activation).
Trying to figure out best way to calculate the remaining subs to be activated of the total sold.
How do you know that only 3 subscribers of the 6 have actually been submitted for subscription activation? What is different in the record of an actual "activated" subscriber and one that is only a potential? Or do subscribers that have submitted for activation link to the org?
How do you know that only 3 subscribers of the 6 have actually been submitted for subscription activation? What is different in the record of an actual "activated" subscriber and one that is only a potential? Or do subscribers that have submitted for activation link to the org?
That is correct MLO, nominated subscribers submit an onboarding form which auto-creates a subscriber record in the table and populates fields for first name, last name, email and organisation (linked to an org directory table). Submissions are then checked and set as activated. It's the calculation of those yet to be nominated/submitted against total subs sold we're seeking.
Okay, I think I finally understand and, luckily, this should be pretty easy.
On the org table, you add a "Count" field that counts the activated subscriptions linked to the Org. Then just add a second field that is a formula that subtracts the count field from the total field.
Okay, I think I finally understand and, luckily, this should be pretty easy.
On the org table, you add a "Count" field that counts the activated subscriptions linked to the Org. Then just add a second field that is a formula that subtracts the count field from the total field.
Hi MLO,
This certainly provides an option to work from. Gets a little trickier as we have different subscription types across several tables that all have slightly differing fields but some tweaking should enable 'pending' totals to be achieved.
Thank you very much for your insight and time. Much appreciated.