How do you prioritize features for a new product?
Ravi agarwal
5 replies
Replies
Max Yamp@maxyamp
Airdrop Tracker
Beta testers/investor feedback, #1.
Share
If you have the opportunity to gather feedback and a list of features, consider allowing users to rank them from 1 to x, with 1 being the most important. By obtaining multiple rankings, you can gain a rough overview of what users truly prioritize and want first.
So we have a backlog of all the features that we need on a table.
The columns are:
ID - Name - Tags - Type - Status - Importance - Difficulty - Priority
Then we calculate the Priority like this:
(prop("Importance") == "High" and prop("Difficulty") == "Low") ? 9 : ((prop("Importance") == "High" and prop("Difficulty") == "Medium") ? 8 : ((prop("Importance") == "Medium" and prop("Difficulty") == "Low") ? 7 : ((prop("Importance") == "High" and prop("Difficulty") == "High") ? 6 : ((prop("Importance") == "Medium" and prop("Difficulty") == "Medium") ? 5 : ((prop("Importance") == "Medium" and prop("Difficulty") == "High") ? 4 : ((prop("Importance") == "Low" and prop("Difficulty") == "Low") ? 3 : ((prop("Importance") == "Low" and prop("Difficulty") == "Medium") ? 2 : ((prop("Importance") == "Low" and prop("Difficulty") == "High") ? 1 : 10))))))))
Focus group/beta testers- prioritise based on ease first as we move from MVP