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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I need to create a materialized view that must expose only some table columns with a similar KQL code, that goes in error:
.create materialized-view mv_test on table mytable
{
summarize arg_max(version, *) by id
| project id, version, column1, column2
}
Moreover, is it possible to return one of this columns converted in a datetime?
Thanks
Solved! Go to Solution.
Hi,
I've solved with a such statement:
.create materialized-view mv_test on table mytable
{ mytable
| extend duedatetime = todatetime(duedatetime)
| project id, version, duedatetime, column1, column2
| summarize arg_max(version, *) by id
}
Thanks
Hi,
I've solved with a such statement:
.create materialized-view mv_test on table mytable
{ mytable
| extend duedatetime = todatetime(duedatetime)
| project id, version, duedatetime, column1, column2
| summarize arg_max(version, *) by id
}
Thanks
Hi @pmscorca ,
Glad to see you solved your problem yourself, please remember to mark your reply as SOLUTION so that more users can find solutions and learn faster. Thanks!
Best Regards,
Dino Tao
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Turn streaming data into instant insights with Microsoft Fabric. Learn to connect live sources, visualize in seconds, and use Copilot + AI for smarter decisions.
Check out the September 2025 Fabric update to learn about new features.