Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi All,
I have a table visual,
column 1 is IoT ID
column 2 is measure 1
column 3 is measure 2
column 4 is measure 3
I have put a time filter (last 7 days) for the report page.
I do want Measure 1 and measure 2 filter by time
my measure 3 code is as following:
Solved! Go to Solution.
Hi @reynold522
I hope both [Capacitythreshold] and [Max DoD] are measures. Please try
DoDoverboundaryN =
CALCULATE (
IF ( [Capacitythreshold] > ABS ( [Max DoD] ), 0, 1 ),
ALL ( 'Table'[timestamp] )
)
Hi @reynold522
I hope both [Capacitythreshold] and [Max DoD] are measures. Please try
DoDoverboundaryN =
CALCULATE (
IF ( [Capacitythreshold] > ABS ( [Max DoD] ), 0, 1 ),
ALL ( 'Table'[timestamp] )
)
hi @reynold522
try like:
DoDoverboundaryN =
-- Notification
VAR _Notification =
IF (CALCULATE([Capacitythreshold], ALL(TableName[timestamp]))>abs([Max DoD]),0,1)
RETURN
_Notification
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
10 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
13 | |
12 | |
11 | |
9 |