By using this website, you agree to our Terms of Use (click here)
I'm trying to create a report that has all the upcoming expiring products. I'd like to have the report grouped by the month.
Currently, it is sorted by date like this:
Which is based off of =[RowINLotSerialStatus.ExpireDate]. Any suggestions?
@katie-phillips,
If you use Month([RowINLotSerialStatus.ExpireDate]) it'll return the month separated out on it's own. You can create a group based on that output and make the exact date grouping a sub group.
You make want to concatenate Month([RowINLotSerialStatus.ExpireDate]) and Year([RowINLotSerialStatus.ExpireDate]) together.
Otherwise I think March 2020 and March 2021 will get grouped together.