Forum Discussion
SDAT
7 years agoRegular Visitor
How to record slicer selection in a database.
hi,
I had created a pbix for user to select the product using slicer.
is it possible to record the selected product and save as a history database with timestamp?
| ProductID | Product |
| 1 | apple |
| 2 | banana |
| 3 | orange |
| 4 | durian |
Product table with slicer for user selection.
Desire output of the history database would be as such:
| Selecting Date/Time | Product Selected |
| 29/9/2018 07:34pm | apple |
| 29/9/2018 07:34pm | banana |
| 30/9/2018 11:22am | apple |
| 30/9/2018 11:22am | orange |
| 30/9/2018 11:22am | durian |
| 30/9/2018 1:34am | banana |
I only able to find dax to obtain the current selection using measure but i cannot create table and save it.
measure =
if (
isfiltered(table1[Product]),
concatenatex(table1[Product]),table1[Product], ",",
All()
)
anyone please help.
Thanks
1 Reply
- v-frfei-msftCommunity Support
Hi SDAT,
Based on my test, it is not possible to meet your requirement currently. You can come up a new idea about that and add your comments there to improve Power BI and make this feature coming sooner.
Regards,
Frank