Hi Everyone

I need to add two sets of dates for the user to select and initial date and a finishing date.
Right now what I've seen of dates is the following:

push(
        @Params,
        {   Frontend   => 'Year',
            Name       => 'Year',
            Multiple   => 0,
            Size       => 0,
            SelectedID => $Y,
            Data       => { %Year, },
        },
    );
    push(
        @Params,
        {   Frontend   => 'Month',
            Name       => 'Month',
            Multiple   => 0,
            Size       => 0,
            SelectedID => $M,
            Data       => { %Month, },
        },
    );

That worked when the stat was for a particular month, but now they want to choose the dates.

Thanks and regars
Maria Alejandra Piedra