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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
GemPOWER
Frequent Visitor

IF HELP

Hola, 

tengo esta columna calculada con IF & Lookvalue y tengo que meter temporalidad en el campo 

[Duracion_del_Contrato_base__c] >12 meses y <24meses. 

IF(or(Oportunidad[Producto/Prestacion Presupuesto]="Instalaciones";or(Oportunidad[Producto/Prestacion Presupuesto]="Adicional contrato instalaciones P5A";(Oportunidad[Producto/Prestacion Presupuesto]="Servicios de Ingeniería")));

LOOKUPVALUE(Presupuesto[PVP__c]; Presupuesto[Id];Oportunidad[SyncedQuoteId]);

 

 tengo que meter esta condición la variable Duracion_del_Contrato_base__c >12meses y <24meses ,NULL)

if( LOOKUPVALUE(Presupuesto[Duracion_del_Contrato_base__c]; Presupuesto[Id];Oportunidad[SyncedQuoteId])>11;

LOOKUPVALUE(Presupuesto[PVP_Anual__c]; Presupuesto[Id];Oportunidad[SyncedQuoteId])

; LOOKUPVALUE(Presupuesto[PVP_Total_Anios__c]; Presupuesto[Id];Oportunidad[SyncedQuoteId])

)

 

 

2 REPLIES 2
v-yuta-msft
Community Support
Community Support

@GemPOWER ,

 

Modfiy the code like pattern below:

Result =
VAR variable = ( [Duracion_del_Contrato_base__c] > 12
    || y < 24 )
RETURN
    IF (
        Oportunidad[Producto/Prestacion Presupuesto] = "Instalaciones"
            || ( Oportunidad[Producto/Prestacion Presupuesto] = "Adicional contrato instalaciones P5A"
            || Oportunidad[Producto/Prestacion Presupuesto] = "Servicios de Ingeniería" ),
        condition1,
        condition2
    )

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Yo necesito crear tres variables:

 

Var P2a=  IF(Oportunidad[Fecha_Adjudicacion__c]=YEAR(NOW()-1;

SI Oportunidad[Duracion_Contrato_Base_meses__c]>12<24month = (Presupuesto[PVP_Anual__c]-Presupuesto[PVP_Total_Anios__c]

SI Oportunidad[Duracion_Contrato_Base_meses__c] disinto>12<24month=0)

 

 

 

Var P2b= IF(Oportunidad[Fecha_Adjudicacion__c]=YEAR(NOW();

Si Presupuesto[Duracion_del_Contrato_base__c] < 12 meses dame Presupuesto[PVP_Total_Anios__c]

Si Presupuesto[Duracion_del_Contrato_base__c] >12 meses  dame  Presupuesto[PVP_Anual__c]

 

Var P5= IF(Oportunidad[Fecha_Adjudicacion__c]=YEAR(NOW() dame el  (Presupuesto[PVP_Total_Anios__c];0)

 

 

 

Return; sum(P2a;P2B;P5)

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

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! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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