Skip to main content
Community site session details

Community site session details

Session Id : mzDrLc1DlcTRqpGkiKXMLc
Power Apps - Building Power Apps
Answered

multiple email address not being read properly in flow

Like (0) ShareShare
ReportReport
Posted on 14 May 2024 16:21:47 by 681 Super User 2025 Season 2

I have a sharepoint list column named CcTo that contains multiple email address for example 

 

1@gmail.com;2@gmail.com;3@gmail.com

 

 

and another list column named Post that contains multiple email address as well

 

4@gmail.com;5@gmail.com

 



my problem is that when the flow is triggered, only 1 email address is recognized

kej_0-1715703241369.png

 

my code for both of my list columns are as follows:

CcTo 

 

 Concatenate(
 //first argument - 
 LookUp(
 'DataSource',
 (SSL = Text(DataCardValueSSL.Selected.Value) && 
 Competency = DataCardValueSMU.Selected.Value && 
 Rank = DataCardValueRank.Selected.Value),
 CcTo
 ),
 //separator
 If(
 !IsEmpty(
 Filter(
 'DataSource',
 Role.Value = "OPS"
 )
 ),
 ";",
 ""
 ),
 //second argument
 Concat(
 Filter(
 'DataSource',
 Role.Value = "OPS"
 ),
 'Member Name'.Email,
 ";"
 )
)
 

 



Post

 

Concatenate(
 //first argument - 
 LookUp(
 'DataSource',
 (SSL = Text(DataCardValueSSL.Selected.Value) && 
 Competency = DataCardValueSMU.Selected.Value && 
 Rank = DataCardValueRank.Selected.Value),
 Post
 ),
 //separator
 If(
 !IsEmpty(
 Filter(
 'DataSource',
 Role.Value = "Recruitment"
 )
 ),
 ";",
 ""
 ),
 //second argument
 Concat(
 Filter(
 'DataSource',
 Role.Value = "Recruitment"
 ),
 'Member Name'.Email,
 ";"
 )
)

 


In my SharePoint list, the email address are valid and written properly.

I do not understand why only 1 email is being read in the flow. the ";" is being read but not the email address. Any form of help is appreciated.

  • Verified answer
    KevinGador Profile Picture
    681 Super User 2025 Season 2 on 17 May 2024 at 00:43:15
    Re: multiple email address not being read properly in flow

    hello, I have solved the problem.

    Seems like this I am getting this behavior because I just resubmitted the entry. The flow is working fine now.

  • v-qiaqi@microsoft.com Profile Picture
    on 15 May 2024 at 02:06:55
    Re: multiple email address not being read properly in flow

    HI @kej,

    I have replied here, let's focus on that one.

    Thanks for your cooperation.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 637 Most Valuable Professional

#2
stampcoin Profile Picture

stampcoin 570 Super User 2025 Season 2

#3
Power Apps 1919 Profile Picture

Power Apps 1919 473