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 following code, it works at the moment.
Solved! Go to Solution.
@reynold522
Before I start asking you questions, I would like you first try:
DoDoverboundaryN =
IF (
ISINSCOPE ( TRACKSHEET[IoT_ID_NUMBER] ),
CALCULATE (
VAR MaxDoD = [Max DoD]
VAR Capacitythreshold =
SUM ( TRACKSHEET[Capacitythreshold] )
RETURN
IF (
Capacitythreshold > ABS ( [Max DoD] ),
0,
DIVIDE ( MaxDoD, Capacitythreshold )
),
ALL ( DimDate[Date] )
)
)
@Anonymous do you have any idea about this?
Thanks in advance!
Thank you I tried this and wrote it in top of my code. it was not working due to measure divide column,
is it possible to share your suggested code?
Thanks in advance!
@reynold522
Before I start asking you questions, I would like you first try:
DoDoverboundaryN =
IF (
ISINSCOPE ( TRACKSHEET[IoT_ID_NUMBER] ),
CALCULATE (
VAR MaxDoD = [Max DoD]
VAR Capacitythreshold =
SUM ( TRACKSHEET[Capacitythreshold] )
RETURN
IF (
Capacitythreshold > ABS ( [Max DoD] ),
0,
DIVIDE ( MaxDoD, Capacitythreshold )
),
ALL ( DimDate[Date] )
)
)
thank you a lot. It works
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
9 | |
8 |