Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hey Guys,
I am new to powerBI. i have data in a .txtfile like this
I want to extract 3 bytes in a row and another 3 bytes as another row and so on . how can i do it.
Basically in simple terms if i have a table of 12 x 10 i want to convert it into 3 x 40 . is it possible?
Thanks in Advance
Solved! Go to Solution.
Hi @Chaitanya_malir ,
Here are the steps you can follow:
1. Select all columns using Ctrl +A – Unpivot Column.
2. In Power query. Add Column – Index Column – From 1.
Result:
3. Create calculated column.
Mod =
var _mod=
MOD('Table'[Index],3)
return
IF(
_mod=1,1,0)Group =
SUMX(FILTER(ALL('Table'),'Table'[Index]<=EARLIER('Table'[Index])),[Mod])
4. Create calculated table.
New Table =
var _table=
SUMMARIZE('Table','Table'[Group],
"1",
MAXX(FILTER('Table','Table'[Index]=
MINX(FILTER(ALL('Table'),'Table'[Group]=EARLIER('Table'[Group])),[Index])),[Value]),
"2",
MAXX(FILTER('Table',
'Table'[Index]=
MINX(FILTER(ALL('Table'),'Table'[Group]=EARLIER('Table'[Group])),[Index])+1),[Value]),
"3",
MAXX(FILTER('Table','Table'[Index]=
MINX(FILTER(ALL('Table'),'Table'[Group]=EARLIER('Table'[Group])),[Index])+2),[Value]))
return
SUMMARIZE(_table,[1],[2],[3])
5. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Chaitanya_malir ,
Here are the steps you can follow:
1. Select all columns using Ctrl +A – Unpivot Column.
2. In Power query. Add Column – Index Column – From 1.
Result:
3. Create calculated column.
Mod =
var _mod=
MOD('Table'[Index],3)
return
IF(
_mod=1,1,0)Group =
SUMX(FILTER(ALL('Table'),'Table'[Index]<=EARLIER('Table'[Index])),[Mod])
4. Create calculated table.
New Table =
var _table=
SUMMARIZE('Table','Table'[Group],
"1",
MAXX(FILTER('Table','Table'[Index]=
MINX(FILTER(ALL('Table'),'Table'[Group]=EARLIER('Table'[Group])),[Index])),[Value]),
"2",
MAXX(FILTER('Table',
'Table'[Index]=
MINX(FILTER(ALL('Table'),'Table'[Group]=EARLIER('Table'[Group])),[Index])+1),[Value]),
"3",
MAXX(FILTER('Table','Table'[Index]=
MINX(FILTER(ALL('Table'),'Table'[Group]=EARLIER('Table'[Group])),[Index])+2),[Value]))
return
SUMMARIZE(_table,[1],[2],[3])
5. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
yes, this can be done easily. Not sure why you need Power BI for this, but it can be done.
Please provide sanitized sample data that fully covers your issue.
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |