Forum Discussion
Create Button to send a specific field-value to a sheet
- Anonymous1 year ago
Hi jerryr125,
Thanks for giving detailed information on the requirement.I have created a calculated table using DAX as shown below:
TopOpenStores =
VAR a =
SUMMARIZE(
FILTER('tbl_abc', 'tbl_abc'[Open Orders] = "Y"),
[StoreDesc],
"ct", COUNTROWS('tbl_abc')
)
VAR maxCt = MAXX(a, [ct])
RETURN
FILTER(a, [ct] = maxCt)
On the Details Page, I have placed two columns for visualization.
On the Main Page, a button has been added and configured to navigate to the Details Page.I have reproduced the scenario as per the requirement and attached the .pbix file for your reference.
If the issue still persists, please feel free to reach out — we’re here to help.
Thank you & Regards,
Prasanna Kumar
Hi jerryr125,
Could you please share a few screenshots of your setup—particularly the button settings, the OpenOrders page, and any relevant filters or visuals? Kindly blur or mask any secured or sensitive data fields. This will help me better understand your scenario and provide a more accurate resolution. Additionally, a clear explanation of your requirements, along with any expected output, would be greatly appreciated to ensure an accurate and efficient response.
Thanks & Regards,
Prasanna kumar
Hi - Anonymous
Thank you again for your help.
Ok, here is what I am trying to do.
Data table:
tbl_abc
| StoreDesc | OrderID | Open Orders |
| StoreA | 12 | Y |
| StoreA | 34 | Y |
| StoreA | 56 | N |
| StoreB | 78 | Y |
| StoreB | 90 | Y |
| StoreC | AB | Y |
| StoreD | CD | Y |
| StoreE | EF | Y |
| StoreE | GH | N |
measure:
kpi-store-name =
PAGE: store-open-orders
table visualization:
| StoreDesc | OrderID | Open Orders |
| StoreA | 12 | Y |
| StoreA | 34 | Y |
| StoreB | 78 | Y |
| StoreB | 90 | Y |
So I basically would like to connect the visible button from the home page to the store-open-orders page. The store-open-orders page would filter on the values in the measure "kpi-store-name".'
I think we are close - just need to connect and filter - Jerry