@JoostCuppes You can try to simply put it in the Text property of a Label control that is in the Gallery, and if you do, you can try the version below for that formula:
With({
colApprovalCounts: [
{Signer:"SSP", Approved:ThisItem.'SSP Approved', Required:ThisItem.'SSP Required'},
{Signer:"SM", Approved:ThisItem.'SM Approved', Required:ThisItem.'SM Required'},
{Signer:"CPO", Approved:ThisItem.'CPO Approved', Required:ThisItem.'CPO Required'},
{Signer:"CEO", Approved:ThisItem.'CEO Approved', Required:ThisItem.'CEO Required'},
{Signer:"SCM", Approved:ThisItem.'SCM Approved', Required:ThisItem.'SCM Required'},
{Signer:"COO", Approved:ThisItem.'COO Approved', Required:ThisItem.'COO Required'},
{Signer:"CFO/CEO", Approved:ThisItem.'CFO/CEO Approved', Required:ThisItem.'CFO/CEO Required'}
]
},
RoundDown(
(CountRows(Filter(colApprovalCounts, Approved = true)) / CountRows(Filter(colApprovalCounts, Required = true))) * 100,
0) & "%"
)
See if this may help @JoostCuppes