cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Format number with thousands separator in Flow email

Would appreciate any suggestion on how to format numbers in the emails that Flow generates.

 

I've got a Flow that generates an email requesting approval triggered by a button in PowerApps.

The body of the email references a couple of numbers from a Sharepoint list.

In the Sharepoint list these numbers are formatted as currency, for example $150,200.

 

In the email that Flow generates these numbers show without the currency symbol and without the thousands separator. So, for example: 150200.

 

I can easily add the currency symbol in but can't seem to get the thousands separator back in.

Any suggestions on how to accomplish this?  Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions

Hi @Anonymous,

 

I have made a test on the function to split "152500" into "152" and "500", then add the "," in between so it shows "152,500",you could refer to screenshot below to create the flow:

Capture.PNG

The expression in the Compose 2 as below:

substring(string(outputs('Compose')),sub(length(string(outputs('Compose'))),3),3)

The expression in the Compose 3 as below:

substring(string(outputs('Compose')),0,sub(length(string(outputs('Compose'))),3))

The expression in the Compose 4 as below:

concat('$',outputs('Compose_3'),',',outputs('Compose_2'))

The flow would run successfully as below:

Capture.PNG

Capture.PNG

 

Best regards,

Alice

 

 

 

 

View solution in original post

15 REPLIES 15
v-yuazh-msft
Community Support
Community Support

Hi @Anonymous,

 

I have made a test on my side and couldn't find a way to display the currency type value as a currency value in microsoft flow currently.

 

I afraid that microsoft could only display the type value as a int value and there is no any way to display the currency type value as a currency value in microsoft flow currently.

 

If you would like the microsoft flow to display the currency type value as a currency value,

please submit an idea to Flow Ideas Forum:

https://powerusers.microsoft.com/t5/Flow-Ideas/idb-p/FlowIdeas

 

Best regards,

Alice

 

Anonymous
Not applicable

Thanks.

 

I guess with the currency I can simply add currency symbols in the email body text.

 

A workaround for adding in the thousands separators could be done by splitting the number that comes from sharepoint and adding in commas.  For example, split "152500" into "152" and "500", then add the "," in between so it shows "152,500" in the email text.  Although I'm not sure how to actually do this...

 

Is there an easier way to make it show the thousands separators?

Hi @Anonymous,

 

I have made a test on the function to split "152500" into "152" and "500", then add the "," in between so it shows "152,500",you could refer to screenshot below to create the flow:

Capture.PNG

The expression in the Compose 2 as below:

substring(string(outputs('Compose')),sub(length(string(outputs('Compose'))),3),3)

The expression in the Compose 3 as below:

substring(string(outputs('Compose')),0,sub(length(string(outputs('Compose'))),3))

The expression in the Compose 4 as below:

concat('$',outputs('Compose_3'),',',outputs('Compose_2'))

The flow would run successfully as below:

Capture.PNG

Capture.PNG

 

Best regards,

Alice

 

 

 

 

The problem with this solution is I do not see how this takes into consideration that not every number is going to be 6 digits. Sometimes is is going to be 2 or 3 or 7.  Is there not a funtion that will format a number this way?

Thanks, worked for me

Here's an expression to format a float less than 1 million into a string for currency (not including the dollar symbol) with a thousands separator and 2 digits after the decimal.

  123.4 => "123.40"
   1234 => "1,234.00"
1234.05 => "1,234.05"
0.1 => "0.10"

Uses variables('myFloat') to represent the number you want to format for currency.

concat(
  if(
    greaterOrEquals(
      variables('myFloat'),
      1000
    ),
    concat(
      substring(
        string(variables('myFloat')),
        0,
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3))
      ),
      ',',
      substring(
        first(split(string(variables('myFloat')), '.')),
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3)),
        min(3, length(first(split(string(variables('myFloat')), '.'))))
      )
    ),
    first(split(string(variables('myFloat')), '.'))
  ),
  '.',
  if(
    contains(string(variables('myFloat')), '.'),
    concat(
      last(split(string(variables('myFloat')), '.')),
      if(
        less(length(last(split(string(variables('myFloat')), '.'))), 2),
        '0',
        ''
      )
    ),
    '00'
  )
)

Or, all in one line:

concat(if(greaterOrEquals(variables('myFloat'),1000),concat(substring(string(variables('myFloat')),0,max(0,sub(length(first(split(string(variables('myFloat')),'.'))),3))),',',substring(first(split(string(variables('myFloat')),'.')),max(0,sub(length(first(split(string(variables('myFloat')),'.'))),3)),min(3,length(first(split(string(variables('myFloat')),'.')))))),first(split(string(variables('myFloat')),'.'))),'.',if(contains(string(variables('myFloat')),'.'),concat(last(split(string(variables('myFloat')),'.')),if(less(length(last(split(string(variables('myFloat')),'.'))),2),'0','')),'00'))

It assumes the number was already rounded to hundreths (see my expression for rounding to hundreths in another post).

 

Here's the expression for COMPLETE currency formatting for numbers under 1 million:

concat('$',if(greaterOrEquals(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000),1000),concat(substring(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),0,max(0,sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),'.'))),3))),',',substring(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),'.')),max(0,sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),'.'))),3)),min(3,length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),'.')))))),first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),'.'))),'.',if(contains(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),'.'),concat(last(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),'.')),if(less(length(last(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),'.'))),2),'0','')),'00'))

It just injects the rounding expression from the linked post into the formatting expression in this post. It isn't the most efficient way to do this, I'm sure, but it works. Besides, what's a few dozen extra functions in a workaround expression for what javascript can accomplish with "myFloat.toFixed(2)"?

 

With the rounding expression, here are results you can expect:

2019-06-19 11_10_07-Run History _ Microsoft Flow.png2019-06-19 11_50_12-Run History _ Microsoft Flow.png

Amazing kindness being displayed here.  Thanks for sharing.  I do agree, MS needs an equivalent action for "numbers" as they have for "dates/time" conversion.

Edit: Flow has added the formatNumber function since this original post. Use this instead:

formatNumber(variables('myFloat), 'N', 'en-US')

Same process, expanded for values under 1 trillion.

 

concat(
  if(
    greaterOrEquals(
      variables('myFloat'),
      1000000000
    ),
    concat(
      substring(
        string(variables('myFloat')),
        0,
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 9))
      ),
      ',',
      substring(
        string(variables('myFloat')),
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 9)),
        3
      ),
      ',',
      substring(
        string(variables('myFloat')),
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 6)),
        3
      ),
      ',',
      substring(
        first(split(string(variables('myFloat')), '.')),
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3)),
        min(3, length(first(split(string(variables('myFloat')), '.'))))
      )
    ),
    if(
      greaterOrEquals(
        variables('myFloat'),
        1000000
      ),
      concat(
        substring(
          string(variables('myFloat')),
          0,
          max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 6))
        ),
        ',',
        substring(
          string(variables('myFloat')),
          max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 6)),
          3
        ),
        ',',
        substring(
          first(split(string(variables('myFloat')), '.')),
          max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3)),
          min(3, length(first(split(string(variables('myFloat')), '.'))))
        )
      ),
      if(
        greaterOrEquals(
          variables('myFloat'),
          1000
        ),
        concat(
          substring(
            string(variables('myFloat')),
            0,
            max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3))
          ),
          ',',
          substring(
            first(split(string(variables('myFloat')), '.')),
            max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3)),
            min(3, length(first(split(string(variables('myFloat')), '.'))))
          )
        ),
        first(split(string(variables('myFloat')), '.'))
      )
    )
  ),
  '.',
  if(
    contains(string(variables('myFloat')), '.'),
    concat(
      last(split(string(variables('myFloat')), '.')),
      if(
        less(length(last(split(string(variables('myFloat')), '.'))), 2),
        '0',
        ''
      )
    ),
    '00'
  )
)

 

 

And all in one line with the fraction rounded to 2 digits:

 

concat(if(greaterOrEquals(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000),1000000000),concat(substring(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)),0,max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 9))),',',substring(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 9)),3),',',substring(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 6)),3),',',substring(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.')),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 3)),min(3, length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.')))))),if(greaterOrEquals(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000),1000000),concat(substring(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)),0,max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 6))),',',substring(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 6)),3),',',substring(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.')),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 3)),min(3, length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.')))))),if(greaterOrEquals(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000),1000),concat(substring(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)),0,max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 3))),',',substring(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.')),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 3)),min(3, length(first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.')))))),first(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))))),'.',if(contains(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'),concat(last(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.')),if(less(length(last(split(string(div(add(mul(variables('myFloat'), 1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'), 1000), 10),5),10,0),mod(mul(variables('myFloat'), 1000), 10))),1000)), '.'))), 2),'0','')),'00'))

 

 

2019-07-19 12_16_49-Run History _ Microsoft Flow.png

 

If you need to format values over 1 trillion, I believe the correct formatting for national debt is simply 😱.

awesome, thanks

Credit to @Mattw112IG who reported a bug, where the code didn't check for values of length under 3.

 

I blame Flow's insane dedication to declarative processing of "if()" statements (i.e. evaluating BOTH the true/false parts before returning one).

 

Here's the corrected version:

 

concat(
  if(
    greaterOrEquals(
      variables('myFloat'),
      1000000000
    ),
    concat(
      substring(
        string(variables('myFloat')),
        0,
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 9))
      ),
      ',',
      substring(
        string(variables('myFloat')),
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 9)),
        min(3, length(string(variables('myFloat'))))
      ),
      ',',
      substring(
        string(variables('myFloat')),
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 6)),
        min(3, length(string(variables('myFloat'))))
      ),
      ',',
      substring(
        first(split(string(variables('myFloat')), '.')),
        max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3)),
        min(3, length(first(split(string(variables('myFloat')), '.'))))
      )
    ),
    if(
      greaterOrEquals(
        variables('myFloat'),
        1000000
      ),
      concat(
        substring(
          string(variables('myFloat')),
          0,
          max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 6))
        ),
        ',',
        substring(
          string(variables('myFloat')),
          max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 6)),
          min(3, length(string(variables('myFloat'))))
        ),
        ',',
        substring(
          first(split(string(variables('myFloat')), '.')),
          max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3)),
          min(3, length(first(split(string(variables('myFloat')), '.'))))
        )
      ),
      if(
        greaterOrEquals(
          variables('myFloat'),
          1000
        ),
        concat(
          substring(
            string(variables('myFloat')),
            0,
            max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3))
          ),
          ',',
          substring(
            first(split(string(variables('myFloat')), '.')),
            max(0, sub(length(first(split(string(variables('myFloat')), '.'))), 3)),
            min(3, length(first(split(string(variables('myFloat')), '.'))))
          )
        ),
        first(split(string(variables('myFloat')), '.'))
      )
    )
  ),
  '.',
  if(
    contains(string(variables('myFloat')), '.'),
    concat(
      last(split(string(variables('myFloat')), '.')),
      if(
        less(length(last(split(string(variables('myFloat')), '.'))), 2),
        '0',
        ''
      )
    ),
    '00'
  )
)

 

And the corrected version with number rounding, all inlined:

 

concat(if(greaterOrEquals(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000),1000000000),concat(substring(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),0,max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 9))),',',substring(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 9)),min(3, length(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000))))),',',substring(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 6)),min(3, length(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000))))),',',substring(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.')),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 3)),min(3, length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.')))))),if(greaterOrEquals(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000),1000000),concat(substring(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),0,max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 6))),',',substring(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 6)),min(3, length(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000))))),',',substring(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.')),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 3)),min(3, length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.')))))),if(greaterOrEquals(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000),1000),concat(substring(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)),0,max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 3))),',',substring(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.')),max(0, sub(length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 3)),min(3, length(first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.')))))),first(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))))),'.',if(contains(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'),concat(last(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.')),if(less(length(last(split(string(div(add(mul(variables('myFloat'),1000),sub(if(greaterOrEquals(mod(mul(variables('myFloat'),1000),10),5),10,0),mod(mul(variables('myFloat'),1000),10))),1000)), '.'))), 2),'0','')),'00'))

And the proof:

 

2019-08-12 10_43_31-Run History _ Microsoft Flow.png

Hi there, 

 

Thanks for this great explanation. 

 

Do you know what the formula would look like if I wanted to set my variable as a string, rather than a float? I am having a hard time figuring it out. 

 

Thanks!

Hi @jamiehandelman ,

 

If you have a string input, then you'll need to replace the "variables('myFloat')" in my example with "float({your-string-src})". E.g. if you're in an Apply-to-each with the string to be formatted in the "dollarStr" property, then you should replace "variables('myFloat')" with "float(item()['dollarStr'])".

 

If you'd like some specific solution, send some details of your use case, e.g. screenshots. Glad to help.

Hi @degvalentine ,

 

Thanks for getting back to me. 

In my specific case, I have a "set quote amount to string" variable being set in an "apply to each" as you can see below. 

 

set quote to string.JPG

 

I tried replacing what you said before in the formula, but it did not work. Any ideas? 


Thanks so much! Really appreciate the help. 

I simulated your input using Compose to get a functional solution you can copy-paste directly.

 

2019-10-15 08_56_20-Edit your flow _ Microsoft Flow.png

 

The result of that "concat(...)" is your string-to-float-to-rounded-number-to-currency-string value.

 

Here's the formula:

 

concat(if(greaterOrEquals(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000),1000000000),concat(substring(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)),0,max(0, sub(length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 9))),',',substring(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)),max(0, sub(length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 9)),min(3, length(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000))))),',',substring(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)),max(0, sub(length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 6)),min(3, length(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000))))),',',substring(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.')),max(0, sub(length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 3)),min(3, length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.')))))),if(greaterOrEquals(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000),1000000),concat(substring(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)),0,max(0, sub(length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 6))),',',substring(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)),max(0, sub(length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 6)),min(3, length(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000))))),',',substring(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.')),max(0, sub(length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 3)),min(3, length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.')))))),if(greaterOrEquals(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000),1000),concat(substring(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)),0,max(0, sub(length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 3))),',',substring(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.')),max(0, sub(length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 3)),min(3, length(first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.')))))),first(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))))),'.',if(contains(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'),concat(last(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.')),if(less(length(last(split(string(div(add(mul(float(item()['Quote_x0020_Amount']),1000),sub(if(greaterOrEquals(mod(mul(float(item()['Quote_x0020_Amount']),1000),10),5),10,0),mod(mul(float(item()['Quote_x0020_Amount']),1000),10))),1000)), '.'))), 2),'0','')),'00'))

 

And the result:

 

2019-10-15 09_23_10-Run History _ Microsoft Flow.png

 

Although I used a variable in my originally-posted example as a generic way to represent unknown input, it is not a requirement of the formula. In your case you should not use a variable because it ruins your ability to use concurrency. You should only use variables inside a loop if you are aggregating values (and you don't require the aggregation to be strictly sequential).

 

In case you're unfamiliar with it, here's how you can multi-thread your loop!

 

2019-10-15 09_03_54-Edit your flow _ Microsoft Flow.png

 

2019-10-15 09_03_36-Edit your flow _ Microsoft Flow.png

 

Also, you don't need to use an action to hold the formatted value (unless you plan to use it multiple times in your loop, then it is probably a good idea). You can put that "concat(...)" expression wherever your Flow needs it inside the loop.

 

2019-10-15 09_14_11-Edit your flow _ Microsoft Flow.png

Please use formatNumber now instead of that insane function posted earlier. A locale-specific solution with commas and rounding is easy.

 

formatNumber(1234.567, 'N', 'en-US')

 

 

https://flow.microsoft.com/en-us/blog/simplified-number-formatting/

https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings#the-curr...

Helpful resources

Announcements

Power Platform Connections Ep 15 | L. Baybutt | Thursday, 1 June 2023

Episode Fifteen of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft MVP Lewis Baybutt aka Low Code Lewis, alongside the latest news and community blogs.   Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.        Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse.  This episode premiers live on our YouTube at 12pm PST on Thursday 1st June 2023.  Video series available at Power Platform Community YouTube channel.    Upcoming events:  European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas  Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community  If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.  Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse.  This episode premiers live on our YouTube at 12pm PST on Thursday 1st June 2023.  Video series available at Power Platform Community YouTube channel.    Upcoming events:  European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas  Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community  If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions. 

May 2023 Community Newsletter and Upcoming Events

Welcome to our May 2023 Community Newsletter, where we'll be highlighting the latest news, releases, upcoming events, and the great work of our members inside the Biz Apps communities. If you're new to this LinkedIn group, be sure to subscribe here in the News & Announcements to stay up to date with the latest news from our ever-growing membership network who "changed the way they thought about code".         LATEST NEWS "Mondays at Microsoft" LIVE on LinkedIn - 8am PST - Monday 15th May  - Grab your Monday morning coffee and come join Principal Program Managers Heather Cook and Karuana Gatimu for the premiere episode of "Mondays at Microsoft"! This show will kick off the launch of the new Microsoft Community LinkedIn channel and cover a whole host of hot topics from across the #PowerPlatform, #ModernWork, #Dynamics365, #AI, and everything in-between. Just click the image below to register and come join the team LIVE on Monday 15th May 2023 at 8am PST. Hope to see you there!     Executive Keynote | Microsoft Customer Success Day CVP for Business Applications & Platform, Charles Lamanna, shares the latest #BusinessApplications product enhancements and updates to help customers achieve their business outcomes.         S01E13 Power Platform Connections - 12pm PST - Thursday 11th May Episode Thirteen of Power Platform Connections sees Hugo Bernier take a deep dive into the mind of co-host David Warner II, alongside the reviewing the great work of Dennis Goedegebuure, Keith Atherton, Michael Megel, Cat Schneider, and more. Click below to subscribe and get notified, with David and Hugo LIVE in the YouTube chat from 12pm PST. And use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.         UPCOMING EVENTS   European Power Platform Conference - early bird ticket sale ends! The European Power Platform Conference early bird ticket sale ends on Friday 12th May 2023! #EPPC23 brings together the Microsoft Power Platform Communities for three days of unrivaled days in-person learning, connections and inspiration, featuring three inspirational keynotes, six expert full-day tutorials, and over eighty-five specialist sessions, with guest speakers including April Dunnam, Dona Sarkar, Ilya Fainberg, Janet Robb, Daniel Laskewitz, Rui Santos, Jens Christian Schrøder, Marco Rocca, and many more. Deep dive into the latest product advancements as you hear from some of the brightest minds in the #PowerApps space. Click here to book your ticket today and save!      DynamicMinds Conference - Slovenia - 22-24th May 2023 It's not long now until the DynamicsMinds Conference, which takes place in Slovenia on 22nd - 24th May, 2023 - where brilliant minds meet, mingle & share! This great Power Platform and Dynamics 365 Conference features a whole host of amazing speakers, including the likes of Georg Glantschnig, Dona Sarkar, Tommy Skaue, Monique Hayward, Aleksandar Totovic, Rachel Profitt, Aurélien CLERE, Ana Inés Urrutia de Souza, Luca Pellegrini, Bostjan Golob, Shannon Mullins, Elena Baeva, Ivan Ficko, Guro Faller, Vivian Voss, Andrew Bibby, Tricia Sinclair, Roger Gilchrist, Sara Lagerquist, Steve Mordue, and many more. Click here: DynamicsMinds Conference for more info on what is sure an amazing community conference covering all aspects of Power Platform and beyond.    Days of Knowledge Conference in Denmark - 1-2nd June 2023 Check out 'Days of Knowledge', a Directions 4 Partners conference on 1st-2nd June in Odense, Denmark, which focuses on educating employees, sharing knowledge and upgrading Business Central professionals. This fantastic two-day conference offers a combination of training sessions and workshops - all with Business Central and related products as the main topic. There's a great list of industry experts sharing their knowledge, including Iona V., Bert Verbeek, Liza Juhlin, Douglas Romão, Carolina Edvinsson, Kim Dalsgaard Christensen, Inga Sartauskaite, Peik Bech-Andersen, Shannon Mullins, James Crowter, Mona Borksted Nielsen, Renato Fajdiga, Vivian Voss, Sven Noomen, Paulien Buskens, Andri Már Helgason, Kayleen Hannigan, Freddy Kristiansen, Signe Agerbo, Luc van Vugt, and many more. If you want to meet industry experts, gain an advantage in the SMB-market, and acquire new knowledge about Microsoft Dynamics Business Central, click here Days of Knowledge Conference in Denmark to buy your ticket today!   COMMUNITY HIGHLIGHTS Check out our top Super and Community Users reaching new levels! These hardworking members are posting, answering questions, kudos, and providing top solutions in their communities.   Power Apps:  Super Users: @WarrenBelz, @LaurensM  @BCBuizer  Community Users:  @Amik@ @mmollet, @Cr1t    Power Automate:  Super Users: @Expiscornovus , @grantjenkins, @abm  Community Users: @Nived_Nambiar, @ManishSolanki    Power Virtual Agents:  Super Users: @Pstork1, @Expiscornovus  Community Users: @JoseA, @fernandosilva, @angerfire1213    Power Pages: Super Users: @ragavanrajan  Community Users: @Fubar, @Madhankumar_L,@gospa  LATEST COMMUNITY BLOG ARTICLES  Power Apps Community Blog  Power Automate Community Blog  Power Virtual Agents Community Blog  Power Pages Community Blog  Check out 'Using the Community' for more helpful tips and information:  Power Apps , Power Automate, Power Virtual Agents, Power Pages 

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.  Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash  ScottShearer     Rusk  ChristianAbata     cchannon  Koen5     a33ik  Heartholme     AaronKnox  okeks      Matren  David_MA     Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg    rubin_boer   cwebb365   Dorrinda   G1124   Gabibalaban   Manan-Malhotra   jcfDaniel   WarrenBelz   Waegemma   drrickryp   GuidoPreite   metsshan    If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.   Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Users online (2,858)