Issue with Summary Range formatting
wont work because
Unsupported operand types: array / intdd state:
ok, so I do
it just shows
1 and nothing elsehow do I format this then? (want 1-4)

Unsupported operand types: array / intarray:2 [▼ // ...
0 => 100
1 => 400
]1 ->formatStateUsing(function ($state) {
return $state / 100;
})->formatStateUsing(function ($state) {
return $state[0] / 100 . ' - ' . $state[1] / 100;
})