Forum Discussion
Latest Revision for Each Proposal Number
I am needing a "1" next to the latest revision for each Proposal #. Below is a screenshot showing some of the data that I am dealing with. The circled values are showing that these are the most recent revisions for each one of the Proposal #. In a separate column I need these to show a 1 next to them.
Hi Matt_Mohawk ,
You can create a calculated column and use it as a filter in bar chart.
Column = var NewRevision = CALCULATE( MAX('Table'[Revision #]), FILTER( 'Table', 'Table'[Proposal #] = EARLIER('Table'[Proposal #]) ) ) var result = IF( 'Table'[Revision #] = NewRevision, 1, 0 ) return resultIf the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
6 Replies
- AilleryO
Memorable Member
Hi,
If I get well your requirement, you need to filter the lines with the version number being the max ?
If you make a table with your document numbers and a measure (Max Version = MAX(Table[# Revision]) ), it should work, isn't it ?
And if you need to concatenate yourProposal # with the # Revision, just use & :
[ColumnsX] & [ColumnsY] (or the concatenate function)
If this does not help you, can you be more specific on your expected outcome to help us guiding you.
- Matt_Mohawk
Helper II
I think you may be close to what I am needing to do. I have an excel document that currently puts a "1" next to the latest revision for each proposal. It allows me to set up a count to figure out how many jobs we have coming through, not including revisions. I just need this to be more automatic so I am trying to gather data using SQL and bypassing Excel altogether. The image below shows the other revisions in red that do not have a "1" next to them. This is telling you that they are old revisions and won't be counted in the end. The line that is marked in orange is telling you that this is the most recent revision and needs to be counted. It also has a "1" next in the column.
- v-kkf-msft
Community Support
Hi Matt_Mohawk ,
Try the following formula:
Measure = var NewRevision = CALCULATE( MAX('Table'[Revision #]), FILTER( ALL('Table'), 'Table'[Proposal #] = MAX('Table'[Proposal #]) ) ) var result = IF( MAX('Table'[Revision #]) = NewRevision, 1, 0 ) return IF( HASONEVALUE('Table'[Proposal #]), result, DISTINCTCOUNT('Table'[Proposal #]) )This is my PBIX file.
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.