Forum Discussion
How to allow users to enter data for slicer
- 2 years ago
Hi TriveniN
Here is the solution that you were looking for i have taken random sample data
As per you SQL Query you have to count all the rows expcet disposed and model hence as per my sample data it should be 5.Now you need to create decimal paramter for which you folow this setp
and create two measrue first for row conut (total # if homes):
RowCount =COUNTROWS (FILTER ('Sheet6','Sheet6'[Unit_Status__c] <> "disposed" && 'Sheet6'[Unit_Status__c] <> "Model"))
second to multiple by %:Measure = [RowCount]*Parameter[Parameter Value] here parameter value is user input. this will give you output somethingh like this
you can also follow this video for creating paramter: https://youtu.be/O9Be1d_oi6Y
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
Check for more interesting solution here: www.youtube.com/@HowtosolveprobemRegards
Hi TriveniN
Here is the solution that you were looking for i have taken random sample data
As per you SQL Query you have to count all the rows expcet disposed and model hence as per my sample data it should be 5.
Now you need to create decimal paramter for which you folow this setp
and create two measrue first for row conut (total # if homes):
second to multiple by %:
you can also follow this video for creating paramter: https://youtu.be/O9Be1d_oi6Y
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
Check for more interesting solution here: www.youtube.com/@Howtosolveprobem
Regards