Currently I'm just using listviewitem.SubItems.Add() to add items to my listview.
The problem is that it only adds to the first 2 columns (Goes column by column).
I want to be able to add to any column, for example: skip the yymm, total trans and yyww columns and add to the amount in doc column.

This is how I currently add to the listview:
int totItems = Seq3.Count - 1;
if (PercentPopTolerance1.Count - 1 > totItems)
totItems = PercentPopTolerance1.Count - 1;
for (int i = 0; i <= totItems; i++)
{
ListViewItem lvi = new ListViewItem();
string item1 = "";
string item2 = "";
if (Seq3.Count - 1 >= i)
item1 = Seq3[i].ToString();
if (PercentPopTolerance1.Count - 1 >= i)
item2 = PercentPopTolerance1[i].ToString();
lvi.SubItems.Add(item1);
lvi.SubItems.Add(item2);
listView2.Items.Add(lvi);
}