Forum Discussion
MathildaBackman
2 years agoHelper I
Count e-mail addresses
I have a table that contains different SharePoint sites. I have a column called Group.Owners where I have the e-mail address to the owner/owners of that site. There can be none, one or multiple e-m...
- 2 years ago
Because some cell is null in Group.Owners column, you can use following code:
List.Count(Text.PositionOf([Group.Owners] ?? "", "@", Occurrence.All))
ZhangKun
2 years agoSuper User
Because some cell is null in Group.Owners column, you can use following code:
List.Count(Text.PositionOf([Group.Owners] ?? "", "@", Occurrence.All))
Papermain
2 years agoFrequent Visitor
I can see the ?? "" replaces the null values with empty text. Is there any documentation available about what the ?? exactly does and if there are other options as well? I cannot find anything and was not aware of this functionality
- ZhangKun2 years agoSuper User
you search "Coalesce" in this pageOperator behavior