March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi I am trying to create 30 measures to build a table to get a count of rows where the following measures are met
Dax Formula in column - Last Flight = 1 , this is always set to 1 , so evry row with latest flight , based on last flightid has a 1 added
Measure - Diff TU Date = counts days since the last flight took place , I wanted to get a count of how many flights there were for Diff TU range 1 to 30) , so I was going to create 30 formulas
I attempted these measures , but the value is coming back the same for each of the measures shown below
V3 Tracked -2 = CALCULATE(COUNTAX('TU Feed','TU Feed'[Diff TU Date]=2),'TU Feed'[Last Flight]=1)
V3 Tracked -3 = CALCULATE(COUNTAX('TU Feed','TU Feed'[Diff TU Date]=3),'TU Feed'[Last Flight]=1)
V3 Tracked -4 = CALCULATE(COUNTAX('TU Feed','TU Feed'[Diff TU Date]=4),'TU Feed'[Last Flight]=1)
V3 Tracked -5 = CALCULATE(COUNTAX('TU Feed','TU Feed'[Diff TU Date]=5),'TU Feed'[Last Flight]=1)
Solved! Go to Solution.
@Pandadev , Try with these minor changes
V3 Tracked -1 = CALCULATE(COUNTAX('TU Feed','TU Feed'[Diff TU Date]),filter('TU Feed','TU Feed'[Diff TU Date]=1 && 'TU Feed'[Last Flight]=1))
@Pandadev , Try with these minor changes
V3 Tracked -1 = CALCULATE(COUNTAX('TU Feed','TU Feed'[Diff TU Date]),filter('TU Feed','TU Feed'[Diff TU Date]=1 && 'TU Feed'[Last Flight]=1))
Thanks that worked , and yes it now makes sense as to why my formula was not working.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
93 | |
87 | |
85 | |
76 | |
49 |
User | Count |
---|---|
163 | |
148 | |
103 | |
74 | |
55 |