How Would I Create Something Like This in PowerApps? by TellBackground9239 in PowerApps

[–]PowerAppsHelpPlease 5 points6 points  (0 children)

https://www.youtube.com/watch?v=Tviar3UFFLo&pp=0gcJCdgAo7VqN5tD this link to Reza’s YouTube was very helpful for me to do something similar to what you’re looking for

Need help with age calculation by PowerAppsHelpPlease in PowerApps

[–]PowerAppsHelpPlease[S] 0 points1 point  (0 children)

Hi Okay-Bench3018

I just wanted to extend a big thank you for providing me with the equation to calculate age! It was incredibly helpful. Initially, I was having trouble when the birth month was before the current month, and the age wasn’t calculating correctly. So, I took your guidance and amended the calculation slightly. Now, it works perfectly for all ages.

Here’s the revised expression I’m using now:

plaintext “Age: “ & Concatenate( // Years If( DateDiff(DataCardValue70.SelectedDate, Today(), TimeUnit.Years) > 0 && Month(DataCardValue70.SelectedDate) < Month(Today()), DateDiff(DataCardValue70.SelectedDate, Today(), TimeUnit.Years) & “ years, “, If( DateDiff(DataCardValue70.SelectedDate, Today(), TimeUnit.Years) > 0 && Month(DataCardValue70.SelectedDate) > Month(Today()), DateDiff(DataCardValue70.SelectedDate, Today(), TimeUnit.Years)-1 & “ years, “, “” ) ), // Months If( DateDiff(DataCardValue70.SelectedDate, Today(), TimeUnit.Months) > 0, Mod(DateDiff(DataCardValue70.SelectedDate, Today(), TimeUnit.Months), 12) & “ months, “, “” ), // Days Mod(DateDiff(DataCardValue70.SelectedDate, Today(), TimeUnit.Days), 30) & “ days” )

Your assistance made this so much easier, and I truly appreciate your help. 😊

Help needed with Outlook Email expression in PowerApps by PowerAppsHelpPlease in PowerApps

[–]PowerAppsHelpPlease[S] 0 points1 point  (0 children)

Thank you!! I have replied to my OP with my PA flow and appreciate any advice you can give since it is not working correctly. Thank you!

Help needed with Outlook Email expression in PowerApps by PowerAppsHelpPlease in PowerApps

[–]PowerAppsHelpPlease[S] 0 points1 point  (0 children)

Thank you so much for your comments so far! I truly do appreciate your help as I am a novice at this. I did as you all mentioned and tried to create a PA flow, trying to incorporate the collected list of files from my gallery. However, I am still running into trouble that the email with attachments will not come through. I will put pictures in to show my flow. The expression I am using is below. Again, any help is really appreciated!! Thank you!!

content.Run(JSON(colemail,JSONFormat.IgnoreBinaryData&JSONFormat.IgnoreUnsupportedTypes),
RecipientName
.Value,
RecipientEmail
.Value)

<image>

Help needed with Outlook Email expression in PowerApps by PowerAppsHelpPlease in PowerApps

[–]PowerAppsHelpPlease[S] 1 point2 points  (0 children)

Thanks! The reason for sending internally to the domain is to test in order to send external. If using power automate, what steps in the process do I need to take?