I am using JIRA to track new features. I fill in the fix version field with the version the feature was integrated in. I also have a custom field called HW where we select the HW platforms the feature was for.
Now I want to create a report where a user could choose the HW platform and the version they are running to see all the features that were on HW platform X and all the features that are in version Y (including the features in releases before Y).
I know with JQL I could do the following:
fixVersion <= Y AND "HW Platforms" = X
I want to find a more user friendly way where users could see two pulldown menus: version and HW and then just select out of existing options.
What is the best way to tackle this?