Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Reading data from a PostgreSQL database in power BI. One of the columns in my data is an integer array; so each cell has an array data. When Power BI reads it, it shows it as text. Furthermore, when I try to convert it to number, power BI can not do it. Tried a number of fixes including Python script to modify the type but no success so far. Any ideas?
Thanks, it works. The eventual goal is to plot the distribution of these array values, combined for all rows (keeping in mind that each array here is in one row), using a suitable Power BI visualization.
What do you want to do next with it?
= Text.Split(
Text.Select([posttimea rray],{"0".."9",","}),",") // so you get a list
------
List.Sum(
List.Transform(
Text.Split(
Text.Select([posttimea rray],{"0".."9",","}),","), Number.From)) // so you get the sum
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 48 | |
| 43 | |
| 26 | |
| 19 |
| User | Count |
|---|---|
| 198 | |
| 126 | |
| 102 | |
| 67 | |
| 50 |