Is it possible to split a field containing comma separated values into separate columns?
I have a column containing fields with variations of the following:
{"land-size":"2000","pricemin":"500","pricemax":"1000"}
I would like my table to show as follows:
I would also like to include other normal fields from my Columns list within the table above.
I have a column containing fields with variations of the following:
{"land-size":"2000","pricemin":"500","pricemax":"1000"}
I would like my table to show as follows:
<table>
<thead>
<tr>
<th>
land-size
</th>
<th>
pricemin
</th>
<th>
pricemax
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
2000
</td>
<td>
500
</td>
<td>
1000
</td>
</tr>
<tr>
<td>
1500
</td>
<td>
1000
</td>
<td>
2500
</td>
</tr>
</tbody>
</table>
I would also like to include other normal fields from my Columns list within the table above.