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

Be 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

Reply
EDS
Helper I
Helper I

formula DAX

Buenos días, me gustaria que me proporcianaraís una formula para obtener el valor a devolver, es decir sin en la columna porcentaje continente el valor% me devuelva el valor anterior al% de lo contario que me devuelva blanco.

porcentajevalor a devolver
30dblanco
15dblanco
5dblanco
15dblanco
15d2%2%
10d2%2%

gRACIAS.

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

No @Syndicate_Admin ,

Puede crear una columna calculada como se indica a continuación:

amount to be returned = 
VAR _len =
    LEN ( 'Table'[percentage] )
VAR _pplace =
    IFERROR ( SEARCH ( "%", 'Table'[percentage], 1, 0 ), 0 )
VAR _dplace =
    IFERROR ( SEARCH ( "d", 'Table'[percentage], 1, 0 ), 0 )
RETURN
    IF (
        _pplace > 0,
        MID ( 'Table'[percentage], _dplace + 1, _pplace - _dplace ),
        "white"
    )

yingyinr_1-1623982598835.png

Saludos

View solution in original post

1 REPLY 1
Syndicate_Admin
Administrator
Administrator

No @Syndicate_Admin ,

Puede crear una columna calculada como se indica a continuación:

amount to be returned = 
VAR _len =
    LEN ( 'Table'[percentage] )
VAR _pplace =
    IFERROR ( SEARCH ( "%", 'Table'[percentage], 1, 0 ), 0 )
VAR _dplace =
    IFERROR ( SEARCH ( "d", 'Table'[percentage], 1, 0 ), 0 )
RETURN
    IF (
        _pplace > 0,
        MID ( 'Table'[percentage], _dplace + 1, _pplace - _dplace ),
        "white"
    )

yingyinr_1-1623982598835.png

Saludos

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors