You could try to use an HTML text object instead. Using that and inline CSS you might be able to get that to work how you want. Alternately you could just use multiple boxes and make them borderless with no fill.
I have gotten text to rotate 90 degrees using an HTML text box in PowerApps so that makes me think its possible.
@Anonymous
Consider using an HtmlText control.
Set the Fill color to : RGBA(64,64,64,1)
Set the Font to Arial Size 18
Set the HtmlText formula to the following:
With({theDate: Now()},
"<div style='text-align:center;background:#404040;'>
<span style='font-size:xx-large;color:snow'>" & Text(theDate, "[$-en-US]d") & "</span><br>
<span style='font-size:large;color:snow'>" & Text(theDate, "[$-en-US]dddd") & "</span><br>
<span style='font-size:smaller;color:yellow'>" & Text(theDate, "[$-en-US]mmm, yyyy") & "</span>
</div>"
)
Substitute Now() in the formula above to the Date you want (or date field).
I hope this is helpful for you.
Hi @Anonymous ,
You can FOrmate like below.
Text(Today(),"[$-en-US]dd dddd mmm yyyy")
Thanks,
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."-Vijay
You could try to use an HTML text object instead. Using that and inline CSS you might be able to get that to work how you want. Alternately you could just use multiple boxes and make them borderless with no fill.
I have gotten text to rotate 90 degrees using an HTML text box in PowerApps so that makes me think its possible.
@Anonymous
Consider using an HtmlText control.
Set the Fill color to : RGBA(64,64,64,1)
Set the Font to Arial Size 18
Set the HtmlText formula to the following:
With({theDate: Now()},
"<div style='text-align:center;background:#404040;'>
<span style='font-size:xx-large;color:snow'>" & Text(theDate, "[$-en-US]d") & "</span><br>
<span style='font-size:large;color:snow'>" & Text(theDate, "[$-en-US]dddd") & "</span><br>
<span style='font-size:smaller;color:yellow'>" & Text(theDate, "[$-en-US]mmm, yyyy") & "</span>
</div>"
)
Substitute Now() in the formula above to the Date you want (or date field).
I hope this is helpful for you.
Thank you so much:)