Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi All,
please suggest how show running in visual when prepared date are in one column and approved date are in another column, we need show running total on line chart both approved count and prepared count.
Use this
Running Prepared =
CALCULATE(
COUNTROWS(FILTER(YourTable, NOT ISBLANK(YourTable[PreparedDate]))),
FILTER(ALL('DateTable'[Date]), 'DateTable'[Date] <= MAX('DateTable'[Date]))
)
Running Approved =
CALCULATE(
COUNTROWS(FILTER(YourTable, NOT ISBLANK(YourTable[ApprovedDate]))),
FILTER(ALL('DateTable'[Date]), 'DateTable'[Date] <= MAX('DateTable'[Date]))
)
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.