It didnt actually divide the number.
Here's the output:
Total RDM size TB 91623.8641958237/1KB
With this being the script:
$rdms = Get-VM | Get-HardDisk | where {"RawPhysical","RawVirtual" -contains $_.DIskType}
"VM with RDM: $(($rdms | Sort-Object -Property {$_.Parent.Name} -Unique).Count)"
"Total RDM size TB $(($rdms | Measure-Object -Property CapacityGB -Sum | Select -ExpandProperty Sum))/1KB"