in reply to Re^14: Unable to create a Pivot chart with visiable Columns
in thread Unable to create a Pivot chart with visiable Columns

Thanks a lot Sir! This is working! but I have one more question how I can exclude IEE7 Browser ( Specific ) from the list? I need to filter the same.

  • Comment on Re^15: Unable to create a Pivot chart with visiable Columns

Replies are listed 'Best First'.
Re^16: Unable to create a Pivot chart with visiable Columns
by poj (Abbot) on Sep 12, 2018 at 16:28 UTC

    Filter the data in this loop

    for ($k = 0; $k <= $#responseid; $k++) { next if ($responseclientbrowser[$k] =~ /IEE7/i);
    poj

      Great Master!!! I have learnt a lot from you. One more thing. How I can drop device information on the same row with Browser in the chart now? I am trying but its messing up?

        Just remove device from this line

        # $worksheet2->write(++$row2,$col2,substr($device,0,3).'-'.$bro); $worksheet2->write(++$row2,$col2,$bro);
        poj