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.
Hi, looking for some help with the error above. im using this function to calculate days in sequence. it returns an error that states i cant refer to an earlier row. any help is appreciated
SequenceDays =
IF (
'Table'[Group] = EARLIER ( 'Table'[Group] ),
IF (
DATEDIFF (
EARLIER ( 'Table'[Date] ),
'Table'[Date],
DAY
) = 1,
EARLIER ( 'Table'[SequenceDays] ) + 1,
1
),
1
)
Solved! Go to Solution.
Hi @Anonymous ,
Please try below dax formula:
SequenceDays =
VAR cur_date =
SELECTEDVALUE ( 'Table'[Date] )
VAR cur_group =
SELECTEDVALUE ( 'Table'[Group] )
VAR cur_sqday =
SELECTEDVALUE ( 'Table'[SequenceDays] )
VAR _val =
IF (
'Table'[Group] = cur_group,
IF ( DATEDIFF ( cur_date, 'Table'[Date], DAY ) = 1, cur_sqday + 1, 1 ),
1
)
RETURN
_val
If it doesn't work, please provide a screenshot of the results you are expecting and desensitized example data, it is very helpful for me to do test.
Thanks for your efforts & time in advance.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
No Luck im afraid, The issue is a circular reference error. I cant call the calculated column im creating as i create it, i need to work out a way to have it iterate somehow.
So presumably, in this particular example, SOLVED means not-solved?
Hi @Anonymous ,
Please try below dax formula:
SequenceDays =
VAR cur_date =
SELECTEDVALUE ( 'Table'[Date] )
VAR cur_group =
SELECTEDVALUE ( 'Table'[Group] )
VAR cur_sqday =
SELECTEDVALUE ( 'Table'[SequenceDays] )
VAR _val =
IF (
'Table'[Group] = cur_group,
IF ( DATEDIFF ( cur_date, 'Table'[Date], DAY ) = 1, cur_sqday + 1, 1 ),
1
)
RETURN
_val
If it doesn't work, please provide a screenshot of the results you are expecting and desensitized example data, it is very helpful for me to do test.
Thanks for your efforts & time in advance.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
No Luck im afraid, The issue is a circular reference error. I cant call the calculated column im creating as i create it, i need to work out a way to have it iterate somehow.
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 |
---|---|
72 | |
68 | |
67 | |
41 | |
39 |
User | Count |
---|---|
48 | |
42 | |
29 | |
28 | |
27 |