Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi Experts,
I would like to count a specific year date in a column. I'm using IF condition or statement to do that.
Let says I want to see data for 2020, 2019 and the blank data. In this case i create a column with conditions IF like below.
COUNTS2020 = IF(YEAR('Data2020'[Batch Return])=2020,0,1) - (Expected result to get count of data for 2020 is = 2488)
COUNTS2019 = IF(YEAR('Data2020'[Batch Return])=2019,0,1) - (Expected result to get count of data for 2019 is = 4)
and for the Blank is expected to get count = 7823
But somehow, the results doesn't get as per what i expected.
What went wrong?
Btw, pbix file at this link https://1drv.ms/u/s!AqKwe2kf8OBIdI-2vH30jrTDBxA?e=bpF3qC
Thanks
Solved! Go to Solution.
@Zaky , Try measures like
2020 = calculate(countrows('Data2020'), filter('Data2020', YEAR('Data2020'[Batch Return])=2020))
2019= calculate(countrows('Data2020'), filter('Data2020', YEAR('Data2020'[Batch Return])=2019))
@Zaky , Try measures like
2020 = calculate(countrows('Data2020'), filter('Data2020', YEAR('Data2020'[Batch Return])=2020))
2019= calculate(countrows('Data2020'), filter('Data2020', YEAR('Data2020'[Batch Return])=2019))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
75 | |
60 | |
37 | |
33 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |