Data Analysis Expressions (DAX) in Power BI

|
| By Sonali Sharma

Data Analysis Expressions (DAX) is a powerful formula and query language used in Microsoft Power BI, Excel Power Pivot, and Analysis Services to perform calculations and manipulate data. It allows users to create custom metrics, measures, and calculated columns, enabling

PHP | better way to include a file

| By Webner

Have a look at this folder structure: Test Folder1 Abc.php Folder2 Qwerty.php Now in Abc.php file, try to include Qwerty.php using the following code: Abc.php include(‘../Folder2/Qwerty.php’) It will give this error: Fatal error: Failed opening required ‘../Folder2/Qwerty.php’ (include_path=’.:/usr/local/lib/php’) in /Test/Folder1/Abc.php

PHP | How to install CakePHP 3.0

| By Webner

These are the steps to install CakePHP 3.0 on Ubuntu machine: Make sure you have PHP 5.5.9 (CLI) or higher installed. Check php version on your system using this command: php -v Run the following commands: 1. Download the composer

Get Salesforce SObject name through Salesforce Record Id

| By Webner

Description: We have Salesforce recordId but need to identify what is the type of Subject corresponding to this record id. Solution: We can get Sobject name from recordId with getSobjectType() function, sample code below: Apex Code: public void echoSObjectName(String RecID)

Introduction to Heroku

| By Webner

Heroku is an all-in-one cloud based platform which allows software developers to develop and host applications over Heroku cloud. The company was setup in June 2007 which initially supported Ruby programming language. Later on, support for other programming languages such

Transition Delay Property in CSS and Javascript

| By Webner

What is Transition Delay? Transition delay specifies the amount of time for the change to take place in css properties of DOM elements. Transition Delay value is defined in seconds (s) or milliseconds(ms). How to implement Transition Delay in CSS?