Hello everyone,
I am seeing to convert my text to subscript in SharePoint list online any help will be good plus I am loading on powerapps.
Sagar shah
so there isn't really a subscript option for text in Power apps, but you can simulate it by setting the size and x and Y coordinate properties of a text control
I simulated subscript by adding two text labels
set the size of text label 2 smaller than label1
Set the Y property of label2 to
Label1.Y+20
Set the X property of Label 2 to
Label1.X+Len(Label1.Text)*12
This makes it look like subscript, as long as the text is only one line