Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Alternative to MAX

is there any function which gives us max of values in terms of strings?

not integer 0's and true or false

it should return the column value.

2 ACCEPTED SOLUTIONS
OwenAuger
Super User
Super User

@Anonymous

You can use LASTNONBLANK to return the 'maximum' of a text column.

See this article on SQLBI:

https://www.sqlbi.com/articles/alternative-use-of-firstnonblank-and-lastnonblank/

 


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

Hi @Anonymous,

 

That's right, LASTNONBLANK/FIRSTNONBLANK order text lexicographically.

 

If you want the text value with greatest length, you can do this or something similar:

Longest Text Value =
CALCULATE (
    LASTNONBLANK ( MyTable[TextColumn], 0 ),
    TOPN ( 1, VALUES ( MyTable[TextColumn] ), LEN ( MyTable[TextColumn] ) )
)

If there are ties, they are broken by LASTNONBLANK.


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

4 REPLIES 4
OwenAuger
Super User
Super User

@Anonymous

You can use LASTNONBLANK to return the 'maximum' of a text column.

See this article on SQLBI:

https://www.sqlbi.com/articles/alternative-use-of-firstnonblank-and-lastnonblank/

 


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn
Anonymous
Not applicable

Hi @OwenAuger,

Actually i found this blog after a little search.

Anyway thank you so much for your reply.

Anonymous
Not applicable

Hi @OwenAuger,

 

The LastNonBlank and FirstNonBlank fuctions giving me the first and last nonblank strings but i need values with maximum character length in the column.!!

Hi @Anonymous,

 

That's right, LASTNONBLANK/FIRSTNONBLANK order text lexicographically.

 

If you want the text value with greatest length, you can do this or something similar:

Longest Text Value =
CALCULATE (
    LASTNONBLANK ( MyTable[TextColumn], 0 ),
    TOPN ( 1, VALUES ( MyTable[TextColumn] ), LEN ( MyTable[TextColumn] ) )
)

If there are ties, they are broken by LASTNONBLANK.


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.