How to Use COMBINEVALUES function in DAX

How to Use COMBINEVALUES function in DAX

If you want to combine multiple values in DAX, the COMBINEVALUES function is what you need. This function concatenates a list of strings separated by a delimiter. The result is a single string. • String1: The first string that you want to concatenate.• String2: The second string that you want to concatenate.• Additional strings that…

How to Use PARALLELPERIOD In Power BI
|

How to Use PARALLELPERIOD In Power BI

PARALLELPERIOD is a DAX function that returns a table that contains a series of dates parallel to the dates to the function. This function can be used to calculate numeric columns over a given timeframe and supports monthly, yearly, and quarterly intervals. PARALLELPERIOD Syntax The DAX syntax for PARALLELPERIOD is simple and can be seen…

How to replicate Power BI vlookup?

How to replicate Power BI vlookup?

Syntax The syntax for the Power BI vlookup can be overwhelming to look at but once you know what all the parameters represent, it becomes very easy to grasp. LOOKUPVALUE (    <result_columnName>,     <search_columnName>,     <search_value> [, <search2_columnName>, <search2_value>] …     [, <alternate Result>] ) Result column is the column that you want to…

Power BI Userelationship function with example

Power BI Userelationship function with example

There are a few relationship functions in DAX that are extremely helpful, and one of those functions is USERELATIONSHIP. This function is utterly useful to link your calculations or functions with inactive relationship columns. This function does not return any value but serves as a powerful tool when combined with functions that have filters as…