Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Removing post.
Hi, @dochtang
MIN GUNBARREL X = CALCULATE(
MIN('All Wellbores'[Gunbarrel X]),
allselected('All Wellbores'[shortname])
)
or
MIN GUNBARREL X =
minx(
allselected('All Wellbores'),
'All Wellbores'[Gunbarrel X]
)
Removing post.
HI, @dochtang
try below code
MIN GUNBARREL X = CALCULATE(
MIN('All Wellbores'[Gunbarrel X]),
removefilters('All Wellbores'[shortname])
)
hello @dochtang , why not tru using minx?
MIN GUNBARREL X = MINX(ALL('All Wellbores'), 'All Wellbores'[Gunbarrel X])
Removing post
i see i used
ALL('All Wellbores')
try using only
'All Wellbores'
so
MIN GUNBARREL X = MINX('All Wellbores', 'All Wellbores'[Gunbarrel X])
Removing
can you please try
MIN GUNBARREL X =
MINX(
FILTER('All Wellbores', 'All Wellbores'[ID] = SELECTEDVALUE('YourSlicerTableName'[ID])),
'All Wellbores'[Gunbarrel X]
)
if it doesnt work please share some sample data
Removing
MIN GUNBARREL X =
VAR SelectedIDs = VALUES('YourSlicerTableName'[shortname])
RETURN
MINX(
FILTER('All Wellbores', 'All Wellbores'[shortname] IN SelectedIDs),
'All Wellbores'[Gunbarrel X]
)
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
17 | |
15 | |
13 | |
10 | |
10 |
User | Count |
---|---|
12 | |
10 | |
6 | |
6 | |
5 |