79221386

Date: 2024-11-25 01:34:35
Score: 1
Natty:
Report link

you can create a column

Column = DIVIDE('Table'[client number],sum('Table'[client number]))

enter image description here

or a meassure

MEASURE =
DIVIDE (
    SUM ( 'Table'[client number] ),
    CALCULATE ( SUM ( 'Table'[client number] ), ALL ( 'Table' ) )
)

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Ryan