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
For each type ABC, DEF, GHI,
If Body value exists more than once in 10 mins interval only take one of the values in that interval for each Type.
Below I have attached a sample data and the result I am expecting to get.
The result I am expecting to get
Solved! Go to Solution.
Hi @Anonymous
You can create a calculated table like this, where Table1 is the first table you show:
NewTable = SUMMARIZECOLUMNS ( Table1[TimeInterval], Table1[Type], Table1[Airflow], Table1[BodyValue] )
Note that this will work well if both Airflow and BodyValue are the same in the rows for the same ten minute interval and Type. Otherwise all different lines will be shown. For instance, take ABC at 10:40. Your data has three rows for it, all with Airflow=0 and BodyValue=1. Only one one row will be show in the new table. If you had instead two rows as shown and another one with for example Airflow=1 and BodyValue=1 the new table would show one row with Airflow=0 and BodyValue=1 and another with Airflow=1 and BodyValue=1 for ABC at 10:40
On a different note, please always show your sample data in text-tabular format in addition to (or instead of) the screen captures. That allows people trying to help to readily copy the data and increases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here.
Cheers
Hi @Anonymous
You can create a calculated table like this, where Table1 is the first table you show:
NewTable = SUMMARIZECOLUMNS ( Table1[TimeInterval], Table1[Type], Table1[Airflow], Table1[BodyValue] )
Note that this will work well if both Airflow and BodyValue are the same in the rows for the same ten minute interval and Type. Otherwise all different lines will be shown. For instance, take ABC at 10:40. Your data has three rows for it, all with Airflow=0 and BodyValue=1. Only one one row will be show in the new table. If you had instead two rows as shown and another one with for example Airflow=1 and BodyValue=1 the new table would show one row with Airflow=0 and BodyValue=1 and another with Airflow=1 and BodyValue=1 for ABC at 10:40
On a different note, please always show your sample data in text-tabular format in addition to (or instead of) the screen captures. That allows people trying to help to readily copy the data and increases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here.
Cheers
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 |