Hi,
I Have a graph showing Amounts per partners. Lets suppose that i select 2 partners on this graph , i will get the following data :
| Year | Month | Partner | Email | Current Amount | Aging 31-60 days |
| 2023 | 1 | A | A@email.com | 10 | 30 |
| 2023 | 1 | B | B@email.com | 20 | 40 |
I want to send emails on selected partners that contain html data that sum up the information.
To do that, i have created an instant cloud flow and added a button on this graph to allow the managing partner informs there partners by sending them an email.
The result is that its sending 2 mails , and on each email, it displays in the html table the data of the 2 selected partners :
| Year | Month | Partner | Email | Amount | Aging 31-60 days |
| 2023 | 1 | A | A@email.com | 10 | 30 |
| 2023 | 1 | B | B@email.com | 20 | 40 |
And of course, the second partner must not see the data of the first partner.
I want just to filter the data for each partner concerned , that means
For Partner A, should receive :
| Year | Month | Partner | Email | Amount | Aging 31-60 days |
| 2023 | 1 | A | A@email.com | 10 | 30 |
and partner B should receive :
| Year | Month | Partner | Email | Amount | Aging 31-60 days |
| 2023 | 1 | B | B@email.com | 20 | 40 |
How can i dot please ?
Thanks