Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi guys, I need som help wit indexing tables with a cap on the index number.
The goal is an index from lets say 1:15. When the index reaches 15, then it should do another iteration of 1:15 indexing until the end. The number is dependent on another index in another table with no relationship.
Any recommendations on how to proceed?
Any help would be much appreciated.
Solved! Go to Solution.
@Anonymous Hi,
You may use Index column with Mathfunction of MOD( ) as below.
IF( MOD([Index],15)=0, 15 , MOD([Index],15) )
To retrive [Index] from other table with no relationship, you amy use either Lookup( ) function or Treatas( ).
Hope this helps.
@Anonymous Hi,
You may use Index column with Mathfunction of MOD( ) as below.
IF( MOD([Index],15)=0, 15 , MOD([Index],15) )
To retrive [Index] from other table with no relationship, you amy use either Lookup( ) function or Treatas( ).
Hope this helps.
Hi @colacan,
Thank you very much for your suggestion.
Everything works accordingly now - thanks a lot!!!!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |