passing cell value through

btardo01

Board Regular
Joined
Oct 6, 2009
Messages
169
Office Version
  1. 2016
Platform
  1. Windows
I have the below but where the filter is set to "Alabama", I would like that filter to be tied to a cell value where the user can change the location from a drop down and the table refresh. Is that possible?

DEFINE
VAR __DS0FilterTable =
TREATAS({"Alabama"}, 'Organization'[OpCo])

VAR __DS0Core =
SELECTCOLUMNS(
KEEPFILTERS(
FILTER(
KEEPFILTERS(
SUMMARIZECOLUMNS(
'Organization'[OpCo],
'Clients'[Client Code],
'Clients'[Name],
__DS0FilterTable,
"CountRowsFactPolicy", COUNTROWS('FactPolicy')
)
),
OR(
OR(
NOT(ISBLANK('Organization'[OpCo])),
NOT(ISBLANK('Clients'[Client Code]))
),
NOT(ISBLANK('Clients'[Name]))
)
)
),
"'Organization'[OpCo]", 'Organization'[OpCo],
"'Clients'[Client Code]", 'Clients'[Client Code],
"'Clients'[Name]", 'Clients'[Name]
)

VAR __DS0BodyLimited =
TOPN(500000, __DS0Core, 'Organization'[OpCo], 1, 'Clients'[Client Code], 1, 'Clients'[Name], 1)

EVALUATE
__DS0BodyLimited

ORDER BY
'Organization'[OpCo], 'Clients'[Client Code], 'Clients'[Name]
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.

Forum statistics

Threads
1,224,824
Messages
6,181,186
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top