Hi @mlynch
It’s possible, but maybe you’ll need to design it the other way around and to divide the other columns into 2 rows instead of merging them. Something like:
<ion-grid>
<ion-row>
<ion-col>This cell is two rows "merged"<ion-col>
<ion-col>
<ion-row>
<ion-col>This is cell row 1</ion-col>
</ion-row>
<ion-col>This is cell row 2</ion-col>
</ion-row>
</ion-col>
</ion-row>
</ion-grid>
I hope it helps!
Rodrigo